about summary refs log tree commit diff
path: root/nixosConfigurations/melian
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--nixosConfigurations/melian/default.nix10
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

Consider giving Nix/NixOS a try! <3