aboutsummaryrefslogtreecommitdiff
path: root/machines/phaenn/fs.nix
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2023-08-11 16:51:35 +0200
committerMax Audron <audron@cocaine.farm>2023-08-11 16:51:35 +0200
commit5828af9fc19e18dc85e49fcc1a251a7eb25d909c (patch)
treec70c3e52237c08d3fdcb2f1269c524c25e3feeb8 /machines/phaenn/fs.nix
init
Diffstat (limited to 'machines/phaenn/fs.nix')
-rw-r--r--machines/phaenn/fs.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/machines/phaenn/fs.nix b/machines/phaenn/fs.nix
new file mode 100644
index 0000000..07b9c2c
--- /dev/null
+++ b/machines/phaenn/fs.nix
@@ -0,0 +1,29 @@
+{ config, lib, pkgs, ... }:
+
+{
+ fileSystems = {
+ "/boot" = {
+ device = "/dev/disk/by-uuid/7C4E-4618";
+ fsType = "vfat";
+ options = [ "X-mount.mkdir" ];
+ };
+
+ "/boot2" = {
+ device = "/dev/disk/by-uuid/7B70-901B";
+ fsType = "vfat";
+ options = [ "X-mount.mkdir" ];
+ };
+
+ "/boot3" = {
+ device = "/dev/disk/by-uuid/7A8E-8568";
+ fsType = "vfat";
+ options = [ "X-mount.mkdir" ];
+ };
+
+ "/boot4" = {
+ device = "/dev/disk/by-uuid/7A04-6958";
+ fsType = "vfat";
+ options = [ "X-mount.mkdir" ];
+ };
+ };
+}