Files
nix-files/hosts/by-name/cadey/fs.nix
Colin 8aa2396c36 hosts/cadey: init
this hasn't been deployed to hardware -- yet
2025-06-22 21:31:10 +00:00

18 lines
296 B
Nix

{ ... }:
{
fileSystems."/nix" = {
device = "/dev/disk/by-uuid/cccccccc-aaaa-dddd-eeee-000020250621";
fsType = "btrfs";
options = [
"compress=zstd"
"defaults"
];
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/2025-0621";
fsType = "vfat";
};
}