zfs stuff - each device will need /etc/machineID

This commit is contained in:
Miranda Marquez 2024-04-11 11:36:56 -08:00
parent 8c1cf58bef
commit 4188e0f003
2 changed files with 5 additions and 2 deletions

View File

@ -142,7 +142,10 @@
./configuration.nix { ./configuration.nix {
services.xserver.videoDrivers = [ "modesetting" "displaylink" ]; services.xserver.videoDrivers = [ "modesetting" "displaylink" ];
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "knockout"; networking = {
hostName = "knockout";
hostId = "499130bf";
};
sound.enable = true; sound.enable = true;
} }
./modules/droidcam-obs.nix # only this machine ./modules/droidcam-obs.nix # only this machine

View File

@ -10,7 +10,7 @@
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" "zfs" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =