This commit is contained in:
2025-03-13 22:05:42 -04:00
parent 1f9bd7efb9
commit 5f63bea667
17 changed files with 644 additions and 264 deletions

View File

@@ -0,0 +1,24 @@
{ config, pkgs, lib, username, ... }:
{
home.file.".gitconfig".text = ''
[user]
name = "User B"
email = "userA@example.com"
'';
home.file.".zshrc".text = ''
# userA's custom zsh config
'';
imports = [
# User B's imports
];
home = {
packages = with pkgs; [
# User B's packages
];
};
}