nixpkgs/configuration/examples/basic.nix

20 lines
227 B
Nix
Raw Normal View History

{
boot = {
grubDevice = "/dev/sda";
};
fileSystems = [
{ mountPoint = "/";
device = "/dev/sda1";
}
];
swapDevices = ["/dev/sdb1"];
services = {
sshd = {
enable = true;
};
};
}