1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-11 10:31:25 +09:00
nixpkgs/nixos/doc/config-examples/basic.nix

21 lines
258 B
Nix

{
boot = {
loader.grub.device = "/dev/sda";
};
fileSystems = [
{ mountPoint = "/";
device = "/dev/sda1";
}
];
swapDevices = [
{ device = "/dev/sdb1"; }
];
services = {
openssh = {
enable = true;
};
};
}