{ inputs, lib, config, pkgs, ... }: { sops.defaultSopsFile = ../secrets/sops.yaml; sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ]; nixpkgs = { config = { allowUnfree = true; permittedInsecurePackages = [ "electron-36.9.5" ]; }; }; nix = { registry = (lib.mapAttrs (_: flake: { inherit flake; })) ( (lib.filterAttrs (_: lib.isType "flake")) inputs ); nixPath = [ "/etc/nix/path" ]; settings = { experimental-features = "nix-command flakes"; auto-optimise-store = true; }; }; users.defaultUserShell = pkgs.bash; documentation.man.generateCaches = false; programs.fish = { enable = true; }; boot = { plymouth = { enable = true; }; consoleLogLevel = 3; initrd.verbose = false; kernelParams = [ "quiet" "splash" "boot.shell_on_fail" "udev.log_priority=3" "rd.systemd.show_status=auto" ]; loader = { timeout = 0; efi = { canTouchEfiVariables = true; }; systemd-boot = { enable = true; }; }; }; programs.bash = { interactiveShellInit = '' if [[ $(${pkgs.procps}/bin/ps --no-header --pid=$PPID --format=comm) != "fish" && -z ''${BASH_EXECUTION_STRING} ]] then shopt -q login_shell && LOGIN_OPTION='--login' || LOGIN_OPTION="" exec ${pkgs.fish}/bin/fish $LOGIN_OPTION fi ''; }; environment = { etc = lib.mapAttrs' (name: value: { name = "nix/path/${name}"; value.source = value.flake; }) config.nix.registry; sessionVariables = { EDITOR = "nvim"; VISUAL = "nvim"; TERM = "xterm-256color"; }; }; virtualisation = { docker = { enable = true; liveRestore = false; }; }; time.timeZone = "Europe/Stockholm"; fonts.packages = with pkgs; [ nerd-fonts.comic-shanns-mono nerd-fonts.fira-code garamond-libre ]; i18n.defaultLocale = "en_US.UTF-8"; i18n.extraLocaleSettings = { LC_ADDRESS = "sv_SE.UTF-8"; LC_IDENTIFICATION = "sv_SE.UTF-8"; LC_MEASUREMENT = "sv_SE.UTF-8"; LC_MONETARY = "sv_SE.UTF-8"; LC_NAME = "sv_SE.UTF-8"; LC_NUMERIC = "sv_SE.UTF-8"; LC_PAPER = "sv_SE.UTF-8"; LC_TELEPHONE = "sv_SE.UTF-8"; LC_TIME = "sv_SE.UTF-8"; }; console.keyMap = "sv-latin1"; services.tailscale.enable = true; networking = { nftables.enable = true; networkmanager.enable = true; firewall = { checkReversePath = "loose"; trustedInterfaces = [ "tailscale0" ]; allowedUDPPorts = [ config.services.tailscale.port ]; }; }; services = { printing.enable = true; clipmenu.enable = true; openssh = { enable = true; }; }; }