diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-02-02 22:17:31 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-02-02 22:17:31 +0300 |
commit | a91c2015ba96053a65a3cc0937752976e7addaef (patch) | |
tree | d7c18b93b2238008a842c7e76514912367aadfb4 /nixosConfigurations/melian | |
parent | 2023-02-02 (diff) |
2023-02-02
Diffstat (limited to '')
-rw-r--r-- | nixosConfigurations/melian/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nixosConfigurations/melian/default.nix b/nixosConfigurations/melian/default.nix index d7563d7..f4efcd9 100644 --- a/nixosConfigurations/melian/default.nix +++ b/nixosConfigurations/melian/default.nix @@ -72,16 +72,16 @@ with lib; { }; fileSystems = { - "/boot" = { - device = "/dev/disk/by-uuid/1083-C8A0"; - fsType = "vfat"; - }; - "/" = { device = "/dev/disk/by-uuid/bb8b09dc-cc67-47e5-8280-532b17a9e62a"; fsType = "xfs"; options = ["noatime"]; }; + + "/boot" = { + device = "/dev/disk/by-uuid/1083-C8A0"; + fsType = "vfat"; + }; }; # NOTE This makes hibernation pretty much impossible because the partition is |