14 lines
263 B
Nix
14 lines
263 B
Nix
{ ... }:
|
|
{
|
|
system.stateVersion = "23.11";
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-uuid/22f0fb39-e264-450d-b575-9dedd2a02361";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
fileSystems."/boot" = {
|
|
device = "/dev/disk/by-uuid/A604-6A7B";
|
|
fsType = "vfat";
|
|
};
|
|
}
|