diff options
| author | mtgmonkey <mtgmonkey@nixos> | 2025-12-29 12:59:02 +0100 |
|---|---|---|
| committer | mtgmonkey <mtgmonkey@nixos> | 2025-12-29 12:59:02 +0100 |
| commit | 52e547c0a4569c76984423ba118f0c5554b6a012 (patch) | |
| tree | 44e2caebc3c53a9669c07712d1f54fbcfa0992c1 /hardware-configuration.nix | |
| parent | 29f22c7c24ebdc1e24eb38ae0be6dd6366caba72 (diff) | |
bak
Diffstat (limited to 'hardware-configuration.nix')
| -rw-r--r-- | hardware-configuration.nix | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 7d2b1aa..dad7ef5 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -19,24 +19,24 @@ fileSystems."/" = { device = "none"; fsType = "tmpfs"; - options = ["defaults" "size=50%" "mode=755"]; + options = ["defaults" "size=25%" "mode=755"]; }; - fileSystems."/boot" = { - device = "/dev/disk/by-uuid/107D-CA99"; - fsType = "vfat"; - options = ["fmask=0077" "dmask=0077"]; + fileSystems."/persist" = { + device = "/dev/disk/by-label/NIXPERSIST"; + neededForBoot = true; + fsType = "btrfs"; }; fileSystems."/nix" = { - device = "/dev/disk/by-uuid/1a8ff2e3-8bed-4acb-9f03-45583f1d651d"; + device = "/dev/disk/by-label/NIXSTORE"; fsType = "btrfs"; }; - fileSystems."/persist" = { - device = "/dev/disk/by-label/NIXPERSIST"; - neededForBoot = true; - fsType = "btrfs"; + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/107D-CA99"; + fsType = "vfat"; + options = ["fmask=0077" "dmask=0077"]; }; swapDevices = [ |
