Files
nix-darwin-config/modules/home/userB/dotfiles.nix
2025-01-07 19:17:44 -05:00

14 lines
211 B
Nix

{ config, pkgs, lib, ... }:
{
home.file.".gitconfig".text = ''
[user]
name = "User B"
email = "userA@example.com"
'';
home.file.".zshrc".text = ''
# userA's custom zsh config
'';
}