21 lines
414 B
Nix
21 lines
414 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
fileSystems."/" =
|
||
|
{
|
||
|
device = "/dev/disk/by-uuid/f5d53811-b478-4d20-91e0-4504c33848b4";
|
||
|
fsType = "ext4";
|
||
|
};
|
||
|
|
||
|
fileSystems."/boot" =
|
||
|
{
|
||
|
device = "/dev/disk/by-uuid/E3CE-0A6E";
|
||
|
fsType = "vfat";
|
||
|
options = [ "fmask=0077" "dmask=0077" ];
|
||
|
};
|
||
|
|
||
|
swapDevices =
|
||
|
[ { device = "/dev/disk/by-uuid/f8a9a852-3ccb-4d00-8e2d-db0d68e688b2"; } ];
|
||
|
|
||
|
}
|