nixos_dots/modules/nixos/filesystems.nix
2025-01-02 22:50:26 +03:00

21 lines
No EOL
510 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
boot.swraid = {
enable = true;
mdadmConf = ''
MAILADDR smitty
ARRAY /dev/md127 metadata=1.2 UUID=f87f3291:f67c9047:51cb60b3:b4370425
'';
};
boot.initrd.luks.devices."trash".device = "/dev/disk/by-uuid/f15e2f4d-0045-40d7-879e-b4fd99a62aba";
fileSystems."/mnt/urec/trash" = {
device = "/dev/disk/by-uuid/862e2017-1d2f-4b4c-919f-8f7ffebfb4b9";
fsType = "ext4";
};
swapDevices = [ {
device = "/swapfile";
size = 64*1024; # В мегабайтах
} ];
}