{ config, pkgs, lib, ... }: with lib; { imports = [ ./kernel.nix ./networking.nix ./openssh.nix ./users ../../modules ]; environment.systemPackages = with pkgs; [ kitty.terminfo bat dig ripgrep uutils-coreutils git bmon bottom man-pages man-pages-posix linux-manual unzip zip figlet ]; programs = { mtr.enable = true; fish.enable = true; }; deployment.tags = [ "all" ]; deployment.targetHost = mkDefault config.networking.fqdn; deployment.targetPort = mkDefault 22; deployment.targetUser = mkDefault null; security.dhparams.defaultBitSize = 4096; system.activationScripts.motd.text = let cfg = config.system.nixos; in '' root=/var/lib/deployment mkdir -p $root date "+%s" > $root/date cat << EOF > $root/motd Welcome to ${cfg.distroName} ${cfg.release} ("${cfg.codeName}") on $(${pkgs.figlet}/bin/figlet -lt -f slant ${config.networking.hostName} | ${pkgs.gnused}/bin/sed -e 's/[[:space:]]*$//').${config.networking.domain} Last deployed on $(date "+%F %T %Z" -d @$(cat "$root/date")) EOF ''; users.motdFile = "/var/lib/deployment/motd"; nix.gc.automatic = true; nix.gc.options = "--delete-older-than 7d"; nix.optimise.automatic = true; nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.trusted-users = [ "root" "@wheel" ]; nixpkgs.config.allowUnfree = true; boot.tmp.cleanOnBoot = mkDefault true; services.journald.extraConfig = "SystemMaxUse=256M"; security.sudo.enable = false; security.sudo-rs = { enable = true; execWheelOnly = true; wheelNeedsPassword = false; }; users.mutableUsers = mkDefault false; i18n.defaultLocale = mkDefault "en_EU.UTF-8"; i18n.glibcLocales = (pkgs.glibcLocales.overrideAttrs (orig: { postPatch = orig.postPatch + '' cp "${../files/en_EU}" localedata/locales/en_EU echo 'en_EU.UTF-8/UTF-8 \' >>localedata/SUPPORTED ''; })); services.xserver.xkb = { layout = "de"; variant = "neo_qwerty"; }; console.useXkbConfig = true; console.earlySetup = true; services.fprintd.enable = config.kyouma.machine-type.graphical; system.stateVersion = "23.11"; time.timeZone = mkDefault "CET"; }