mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
24 lines
374 B
Nix
24 lines
374 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./boot.nix
|
|
./disko-config.nix
|
|
./hardware-configuration.nix
|
|
./network.nix
|
|
./services.nix
|
|
./syncthing.nix
|
|
./system.nix
|
|
];
|
|
|
|
networking.hostName = "newton";
|
|
|
|
sops = {
|
|
defaultSopsFile = ./secrets.yaml;
|
|
gnupg.sshKeyPaths = [ ];
|
|
};
|
|
|
|
system = {
|
|
stateVersion = "23.05";
|
|
autoUpgrade.enable = true;
|
|
};
|
|
}
|