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