aboutsummaryrefslogtreecommitdiff
path: root/machines/ettves/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/ettves/fs.nix
init
Diffstat (limited to 'machines/ettves/fs.nix')
-rw-r--r--machines/ettves/fs.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/machines/ettves/fs.nix b/machines/ettves/fs.nix
new file mode 100644
index 0000000..ac24573
--- /dev/null
+++ b/machines/ettves/fs.nix
@@ -0,0 +1,17 @@
+{ config, lib, pkgs, ... }:
+
+{
+ fileSystems = {
+ "/boot" = {
+ device = "/dev/disk/by-uuid/4BF2-2DF8";
+ fsType = "vfat";
+ options = [ "X-mount.mkdir" ];
+ };
+
+ "/boot2" = {
+ device = "/dev/disk/by-uuid/4C84-B5F5";
+ fsType = "vfat";
+ options = [ "X-mount.mkdir" ];
+ };
+ };
+}