{ pkgs, modulesPath, ... }: { imports = [ ./network.nix ./root.nix #"${modulesPath}/profiles/headless.nix" "${modulesPath}/profiles/all-hardware.nix" ]; sops = { defaultSopsFile = ../secrets.yaml; defaultSopsFormat = "yaml"; age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ]; }; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; boot.initrd.systemd.enable = true; time.timeZone = "Europe/Berlin"; console.keyMap = "de"; environment.systemPackages = with pkgs; [ vim wget curl tmux ]; system.stateVersion = "22.11"; }