mirror of
https://github.com/blahai/nyx.git
synced 2025-02-23 23:15:10 +00:00
18 lines
329 B
Nix
18 lines
329 B
Nix
|
{
|
||
|
fileSystems = {
|
||
|
"/" = {
|
||
|
device = "/dev/disk/by-label/root";
|
||
|
fsType = "ext4";
|
||
|
options = ["auto"];
|
||
|
};
|
||
|
|
||
|
"/boot" = {
|
||
|
device = "/dev/disk/by-label/BOOT";
|
||
|
fsType = "vfat";
|
||
|
options = ["fmask=0022" "dmask=0022"];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
swapDevices = [{device = "/dev/disk/by-label/swap";}];
|
||
|
}
|