{ config, pkgs, ... }: let npins = import ../../npins; in { imports = [ ../common ./graphical.nix ./dev.nix ./create.nix ]; environment.systemPackages = [ pkgs.npins (pkgs.callPackage "${npins.agenix}/pkgs/agenix.nix" {}) ]; environment.sessionVariables = { # Tell .zshrc to source zshrc-workstation.sh. MYNIX_PROFILE = "workstation"; }; # Age defaults to this anyway when openssh is enabled. # We're setting this here for workstations where openssh is disabled. age.identityPaths = ["/etc/ssh/ssh_host_ed25519_key"]; }