adding user for dov

This commit is contained in:
2025-09-25 21:00:42 -04:00
parent c36624cc55
commit 2ed08501fe
10 changed files with 179 additions and 0 deletions

22
users/dov/home/global.nix Normal file
View File

@@ -0,0 +1,22 @@
{ config, ... }:
{
imports = [
./cli
./programs.nix
./ssh_config.nix
];
programs = {
home-manager.enable = true;
git.enable = true;
};
home = {
username = "dov";
homeDirectory = "/home/${config.home.username}";
stateVersion = "24.05";
sessionVariables = {
FLAKE = "$HOME/dotfiles";
};
};
}