1
Fork 0
satellite/hosts/nixos/lapetus/default.nix
2023-07-17 16:50:07 +02:00

23 lines
409 B
Nix

{
imports = [
../common/global
../common/users/adrielus.nix
../common/optional/slambda.nix
./hardware-configuration.nix
./boot.nix
];
# Set the name of this machine!
networking.hostName = "lapetus";
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "22.11";
# Boot
boot.loader.grub = {
enable = true;
device = "/dev/sda";
};
}