aboutsummaryrefslogtreecommitdiff
path: root/hosts/mercury/disks.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-06-09 17:40:46 +0000
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-06-09 17:40:46 +0000
commita45c4551712c1ba5cb82eaf290f311ab0e8690e4 (patch)
treef62b23489fb31f8ea58fef77f99619efd784eb36 /hosts/mercury/disks.nix
big changes
Diffstat (limited to 'hosts/mercury/disks.nix')
-rw-r--r--hosts/mercury/disks.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/hosts/mercury/disks.nix b/hosts/mercury/disks.nix
new file mode 100644
index 0000000..ffa0871
--- /dev/null
+++ b/hosts/mercury/disks.nix
@@ -0,0 +1,14 @@
+{
+ # TODO: Replace this with disko eventually
+
+ fileSystems."/" = {
+ device = "/dev/disk/by-uuid/3d80a86b-3268-4209-a833-b531b8bc0ebc";
+ fsType = "ext4";
+ };
+
+ fileSystems."/boot" = {
+ device = "/dev/disk/by-uuid/45A4-2E5B";
+ fsType = "vfat";
+ options = ["fmask=0022" "dmask=0022"];
+ };
+}