summary refs log tree commit diff
path: root/hosts/disko.nix
diff options
context:
space:
mode:
authortzlil <tzlils@protonmail.com>2023-02-05 22:29:24 +0200
committertzlil <tzlils@protonmail.com>2023-02-05 22:29:24 +0200
commitb0422f1bc1ffdfc32f621c26ff8091d6817e4e67 (patch)
treebd1e2c66651407796a1f104b63fbb2fb0717906c /hosts/disko.nix
parentc2efa603990a9a01501b6df1aa38bb8c5d3d01f7 (diff)
remove password age, add disko config, add vps, trying to get hyprland working
Diffstat (limited to 'hosts/disko.nix')
-rw-r--r--hosts/disko.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/hosts/disko.nix b/hosts/disko.nix
index 0a0710e..4808edd 100644
--- a/hosts/disko.nix
+++ b/hosts/disko.nix
@@ -28,13 +28,13 @@
             type = "btrfs";
             extraArgs = "-f"; # Override existing partition
             subvolumes = {
-              "/nix" = {
-                mountOptions = ["noatime" "compress=zstd"]
-              }
+              "/" = {
+                  mountOptions = ["noatime" "compress=zstd"];
+              };
             };
           };
         }
-      ]
+      ];
     };
   });
     
@@ -42,7 +42,7 @@
     "/" = {
       fsType = "tmpfs";
       mountOptions = [
-        "size=200M"
+       "noexec" "defaults" "size=2G" "mode=755"
       ];
     };
   };