35 lines
500 B
Nix
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;
|
|
|
|
}
|