Files
homelab-config/nixos/home.nix
T
2025-08-23 12:51:13 -05:00

35 lines
500 B
Nix

{ config, pkgs, ... }:
{
home.username = "sysAdmin";
home.homeDirectory = "/home/sysAdmin";
home.packages = with pkgs; [
sops
ssh-to-age
git
tree
unixtools.ping
];
# user persisted dirs
home.persistence."/persist/home/sysAdmin" = {
directories = [
".ssh"
"rp"
];
files = [
".bash_history"
".config/sops/age/keys.txt"
];
allowOther = true;
};
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}