Files
homelab-config/nixos/home.nix
T

18 lines
245 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; [
git
tree
2025-04-19 20:31:26 -05:00
unixtools.ping
2025-04-09 15:27:53 -05:00
];
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}