16 lines
231 B
Nix
16 lines
231 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
modulesPath,
|
|
...
|
|
}:
|
|
{
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-uuid/4919727e-d114-4d57-b206-522b5df5fccc";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
}
|