2023-11-07 22:00:00 +01:00
|
|
|
{ ... }:
|
2022-06-03 17:47:16 +02:00
|
|
|
{
|
|
|
|
imports = [
|
2023-11-04 13:03:19 +01:00
|
|
|
./disko-config.nix
|
2022-06-03 17:47:16 +02:00
|
|
|
./hardware-configuration.nix
|
2023-02-23 20:02:46 +01:00
|
|
|
./network.nix
|
2024-01-18 22:37:39 +01:00
|
|
|
./nixinate.nix
|
2022-12-03 11:59:28 +01:00
|
|
|
./services.nix
|
|
|
|
./syncthing.nix
|
2022-12-05 22:51:46 +01:00
|
|
|
./system.nix
|
2022-12-03 11:59:28 +01:00
|
|
|
./wifi.nix
|
2022-06-03 17:47:16 +02:00
|
|
|
];
|
2023-09-07 00:00:34 +02:00
|
|
|
|
2022-06-03 17:47:16 +02:00
|
|
|
networking.hostName = "serverle";
|
|
|
|
|
2022-06-27 22:43:06 +02:00
|
|
|
sops = {
|
|
|
|
defaultSopsFile = ./secrets.yaml;
|
2022-12-03 11:59:28 +01:00
|
|
|
# disable gpg and thereby enable age
|
|
|
|
gnupg.sshKeyPaths = [ ];
|
2022-06-27 22:43:06 +02:00
|
|
|
};
|
2022-06-03 23:32:36 +02:00
|
|
|
|
2022-06-03 17:47:16 +02:00
|
|
|
system = {
|
2023-11-14 20:59:12 +01:00
|
|
|
stateVersion = "23.11";
|
2022-06-03 17:47:16 +02:00
|
|
|
autoUpgrade.enable = true;
|
|
|
|
};
|
|
|
|
}
|