mirror of
https://github.com/blahai/nyx.git
synced 2025-01-19 03:20:20 +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";}];
|
||
|
}
|