diff options
| author | Max Audron <audron@cocaine.farm> | 2023-08-11 16:51:35 +0200 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2023-08-11 16:51:35 +0200 |
| commit | 5828af9fc19e18dc85e49fcc1a251a7eb25d909c (patch) | |
| tree | c70c3e52237c08d3fdcb2f1269c524c25e3feeb8 /machines/ettves/fs.nix | |
init
Diffstat (limited to 'machines/ettves/fs.nix')
| -rw-r--r-- | machines/ettves/fs.nix | 17 |
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" ]; + }; + }; +} |
