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/manwe/default.nix | |
parent | 2023-02-02 (diff) |
2023-02-02
Diffstat (limited to '')
-rw-r--r-- | nixosConfigurations/manwe/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nixosConfigurations/manwe/default.nix b/nixosConfigurations/manwe/default.nix index a079579..2262501 100644 --- a/nixosConfigurations/manwe/default.nix +++ b/nixosConfigurations/manwe/default.nix @@ -58,14 +58,14 @@ with lib; { }; fileSystems = { - "/boot" = { - device = "/dev/sda1"; + "/" = { + device = "/dev/sda2"; fsType = "xfs"; options = ["noatime"]; }; - "/" = { - device = "/dev/sda2"; + "/boot" = { + device = "/dev/sda1"; fsType = "xfs"; options = ["noatime"]; }; |