mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
26 lines
436 B
Nix
26 lines
436 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./disko-config.nix
|
|
./hardware-configuration.nix
|
|
./network.nix
|
|
./nixinate.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.11";
|
|
autoUpgrade.enable = true;
|
|
};
|
|
}
|