aboutsummaryrefslogtreecommitdiff
path: root/hosts/odin/filesystems/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/odin/filesystems/default.nix')
-rw-r--r--hosts/odin/filesystems/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/hosts/odin/filesystems/default.nix b/hosts/odin/filesystems/default.nix
new file mode 100644
index 0000000..410e425
--- /dev/null
+++ b/hosts/odin/filesystems/default.nix
@@ -0,0 +1,17 @@
+{
+ fileSystems."/" = {
+ device = "/dev/disk/by-uuid/f3bedccb-3f2b-49ae-9be4-5ec9fe683027";
+ fsType = "ext4";
+ };
+
+ fileSystems."/boot" = {
+ device = "/dev/disk/by-uuid/78C3-E7F8";
+ fsType = "vfat";
+ options = [
+ "fmask=0022"
+ "dmask=0022"
+ ];
+ };
+
+ swapDevices = [ ];
+}