Files
homelab-config/nixos/home.nix
T

33 lines
462 B
Nix
Raw Normal View History

2025-04-16 10:57:36 -05:00
{ config, pkgs, ... }:
2025-04-09 15:27:53 -05:00
{
home.username = "sysAdmin";
home.homeDirectory = "/home/sysAdmin";
home.packages = with pkgs; [
2025-08-23 00:09:32 -05:00
sops
2025-08-23 12:51:13 -05:00
ssh-to-age
2025-04-09 15:27:53 -05:00
git
tree
2025-04-19 20:31:26 -05:00
unixtools.ping
2025-04-09 15:27:53 -05:00
];
2025-08-23 01:43:06 -05:00
# user persisted dirs
2026-04-04 15:20:53 -05:00
home.persistence."/persist" = {
2025-08-23 01:43:06 -05:00
directories = [
".ssh"
"rp"
];
files = [
".bash_history"
".config/sops/age/keys.txt"
];
};
2025-04-09 15:27:53 -05:00
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}