From 7ce263ca99ce7922473f0eef7affd03f804f5720 Mon Sep 17 00:00:00 2001 From: arouzing Date: Sat, 4 Feb 2023 19:22:25 -0500 Subject: [PATCH] enable tailscale add virt supports --- hosts/openldap.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/hosts/openldap.nix b/hosts/openldap.nix index cb943ba..53d6b05 100644 --- a/hosts/openldap.nix +++ b/hosts/openldap.nix @@ -1,9 +1,10 @@ -{ config, pkgs, lib, ... }: +{ modulesPath, config, pkgs, lib, ... }: { imports = [ # Include the results of the hardware scan. # ../.modules/base/hardware.nix + (modulesPath + "/profiles/qemu-guest.nix") ../.modules/services/docker.nix ../.modules/users/arouzing.nix ../.modules/users/speccon18.nix @@ -14,7 +15,6 @@ environment.systemPackages = with pkgs; [ htop vim - # sleep tailscale ]; @@ -24,7 +24,7 @@ # networkmanager.enable = true; }; - # services.tailscale.enable = true; + services.tailscale.enable = true; time.timeZone = "America/New_York"; @@ -37,4 +37,9 @@ ## main services system.stateVersion = "22.11"; + ### testing ### + boot.initrd.availableKernelModules = + [ "ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk" ]; + + } \ No newline at end of file