{ lib, pkgs, ... }@args: { boot = { tmp.cleanOnBoot = true; loader = { systemd-boot.enable = true; efi.canTouchEfiVariables = true; }; }; networking.networkmanager = { enable = true; }; services.openssh = { enable = true; settings.PasswordAuthentication = false; }; nix.settings.experimental-features = [ "nix-command" "flakes" ]; nixpkgs.config.allowUnfree = true; networking.hostName = "penguin"; environment.systemPackages = with pkgs; [ git neovim ghostty ]; }