diff options
author | lassulus <lassulus@lassul.us> | 2022-01-06 13:52:10 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2022-01-06 13:52:10 +0100 |
commit | c5e8c95f684f6c7588bc3bca3a6307dcb4658c1c (patch) | |
tree | 365c5ebf26a9f8b515abe413bed0b130d3572497 /tv/1systems/bu/disks.nix | |
parent | deda4c978956e39c3b6345e5ef5604b2bc020e00 (diff) | |
parent | 63e76e4218339c87d8df5fd1712a5be0e17a33cd (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'tv/1systems/bu/disks.nix')
-rw-r--r-- | tv/1systems/bu/disks.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tv/1systems/bu/disks.nix b/tv/1systems/bu/disks.nix new file mode 100644 index 000000000..deabefa7b --- /dev/null +++ b/tv/1systems/bu/disks.nix @@ -0,0 +1,19 @@ +{ + boot.initrd.luks.devices.buda2.device = "/dev/sda2"; + fileSystems."/" = { + device = "buda2/root"; + fsType = "zfs"; + }; + fileSystems."/bku" = { + device = "buda2/bku"; + fsType = "zfs"; + }; + fileSystems."/home" = { + device = "buda2/home"; + fsType = "zfs"; + }; + fileSystems."/boot" = { + device = "/dev/sda1"; + fsType = "vfat"; + }; +} |