diff --git a/hosts/redmond/filesystems/default.nix b/hosts/redmond/filesystems/default.nix index 359e1bc..e1ea55e 100644 --- a/hosts/redmond/filesystems/default.nix +++ b/hosts/redmond/filesystems/default.nix @@ -1,6 +1,10 @@ { ... }: { fileSystems = { + "/mnt/Windrive" = { + device = "/dev/disk/by-uuid/582C6B802C6B57D0"; + options = [ "nosuid" "nodev" ]; + }; "/home/jimbo/JimboNFS" = { device = "10.100.0.1:/export/JimboNFS"; fsType = "nfs4"; diff --git a/hosts/redmond/hardware/default.nix b/hosts/redmond/hardware/default.nix index c1dc734..33bdf20 100644 --- a/hosts/redmond/hardware/default.nix +++ b/hosts/redmond/hardware/default.nix @@ -1,7 +1,9 @@ { config, lib, ... }: + { - boot.kernelModules = [ "kvm-amd" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "ehci_pci" "sd_mod" "sr_mod" "sdhci_pci" "rtsx_usb_sdmmc" ]; + boot.initrd.kernelModules = [ "dm-snapshot" ]; + boot.kernelModules = [ "kvm-amd" ]; networking.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";