Files
homelab-config/nixos/home.nix
T

34 lines
480 B
Nix

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