Files
nixos/devices/test-pc-vm/default.nix

24 lines
427 B
Nix

inputs:
{
config =
{
nixos =
{
system =
{
fileSystems =
{
mount =
{
vfat."/dev/disk/by-partlabel/test-boot" = "/boot";
btrfs."/dev/disk/by-partlabel/test-root1" = { "/nix" = "/nix"; "/nix/rootfs/current" = "/"; };
};
};
nixpkgs.march = "znver4";
network = {};
};
services.sshd = {};
};
};
}