From 5828af9fc19e18dc85e49fcc1a251a7eb25d909c Mon Sep 17 00:00:00 2001 From: Max Audron Date: Fri, 11 Aug 2023 16:51:35 +0200 Subject: init --- machines/ettves/fs.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 machines/ettves/fs.nix (limited to 'machines/ettves/fs.nix') 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" ]; + }; + }; +} -- cgit v1.2.3