nixos/machines/serverle/configuration.nix
2023-11-07 22:49:32 +01:00

25 lines
417 B
Nix

{ ... }:
{
imports = [
./disko-config.nix
./hardware-configuration.nix
./network.nix
./services.nix
./syncthing.nix
./system.nix
./wifi.nix
];
networking.hostName = "serverle";
sops = {
defaultSopsFile = ./secrets.yaml;
# disable gpg and thereby enable age
gnupg.sshKeyPaths = [ ];
};
system = {
stateVersion = "23.05";
autoUpgrade.enable = true;
};
}