added user for megan

This commit is contained in:
2025-06-04 21:50:49 -04:00
parent 65335d1d38
commit f23d381895
9 changed files with 160 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
{ config, ... }:
{
imports = [
./cli
./programs.nix
];
programs = {
home-manager.enable = true;
git.enable = true;
};
home = {
username = "megan";
homeDirectory = "/home/${config.home.username}";
stateVersion = "24.05";
};
}