{ pkgs, lib, inputs, config, outputs, ...}: let sopsHashedPasswordFile = lib.optionalString (lib.hasAttr "sops-nix" inputs) config.sops.secrets."passwords/root".path; in { imports = [ ./sops.nix ./locale.nix ]; nixpkgs = { overlays = [ outputs.overlays.additions outputs.overlays.modifications outputs.overlays.unstable-packages ]; config = { allowUnfree = true; }; }; programs.gnupg.agent = { enable = true; enableSSHSupport = true; }; nix.settings.experimental-features = [ "nix-command" "flakes" ]; users = { mutableUsers = true; extraUsers = { root = { hashedPasswordFile = sopsHashedPasswordFile; }; }; }; environment.systemPackages = [ pkgs.rsync pkgs.curl pkgs.just pkgs.git pkgs.vim ]; system.stateVersion = "23.11"; }