1
Fork 0
satellite/hosts/nixos/lapetus/default.nix

23 lines
487 B
Nix
Raw Normal View History

2023-07-17 19:23:00 +02:00
{
2023-07-17 16:50:07 +02:00
imports = [
../common/global
../common/users/adrielus.nix
../common/optional/slambda.nix
2023-07-18 16:30:04 +02:00
./services/syncthing.nix
./filesystems
./hardware
2023-07-17 16:50:07 +02:00
];
2023-07-18 16:30:04 +02:00
# Machine ids
2023-07-17 16:50:07 +02:00
networking.hostName = "lapetus";
2023-07-17 19:44:54 +02:00
networking.hostId = "08357db3";
2023-07-18 15:16:57 +02:00
environment.etc.machine-id.text = "d9571439c8a34e34b89727b73bad3587";
2023-07-17 16:50:07 +02:00
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
2023-07-17 19:23:00 +02:00
system.stateVersion = "23.05";
2023-07-17 16:50:07 +02:00
2023-07-18 16:30:04 +02:00
# Bootloader
2023-07-18 00:48:23 +02:00
boot.loader.systemd-boot.enable = true;
2023-07-17 16:50:07 +02:00
}