default disk-config

This commit is contained in:
2025-04-09 15:27:53 -05:00
parent 6ee70e0d1a
commit c5dc233b7f
2 changed files with 72 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{ config, pkgs, ... }:
{
home.username = "sysAdmin";
home.homeDirectory = "/home/sysAdmin";
home.packages = with pkgs; [
git
tree
];
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}