Commit 7ae6f05
Changed files (1)
hosts
chaser-kevin
hosts/chaser-kevin/hardware-configuration.nix
@@ -12,7 +12,7 @@
(modulesPath + "/installer/scan/not-detected.nix")
];
- boot.initrd.availableKernelModules = ["xhci_pci" "nvme" "thunderbolt" "usb_storage" "sd_mod" "sdhci_pci"];
+ boot.initrd.availableKernelModules = ["xhci_pci" "nvme" "thunderbolt" "usbhid" "sdhci_pci"];
boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = [];
@@ -23,16 +23,16 @@
options = ["subvol=root"];
};
- fileSystems."/home" = {
+ fileSystems."/nix" = {
device = "/dev/disk/by-uuid/d1fb32f2-1dc0-435d-ad0f-1de0a121dbef";
fsType = "btrfs";
- options = ["subvol=home"];
+ options = ["subvol=nix"];
};
- fileSystems."/nix" = {
+ fileSystems."/home" = {
device = "/dev/disk/by-uuid/d1fb32f2-1dc0-435d-ad0f-1de0a121dbef";
fsType = "btrfs";
- options = ["subvol=nix"];
+ options = ["subvol=home"];
};
fileSystems."/boot" = {
@@ -41,6 +41,11 @@
options = ["fmask=0022" "dmask=0022"];
};
+ fileSystems."/mnt/share" = {
+ device = "/dev/disk/by-uuid/4200-EC69";
+ fsType = "exfat";
+ };
+
swapDevices = [
{device = "/dev/disk/by-uuid/39640e68-8296-4cdb-ab16-b9dfcd4ae743";}
];