aboutsummaryrefslogtreecommitdiff
path: root/machines/ettves/fs.nix
diff options
context:
space:
mode:
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" ];
+ };
+ };
+}