mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
22 lines
258 B
Nix
22 lines
258 B
Nix
{
|
|
boot = {
|
|
loader.grub.device = "/dev/sda";
|
|
};
|
|
|
|
fileSystems = [
|
|
{ mountPoint = "/";
|
|
device = "/dev/sda1";
|
|
}
|
|
];
|
|
|
|
swapDevices = [
|
|
{ device = "/dev/sdb1"; }
|
|
];
|
|
|
|
services = {
|
|
openssh = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|