dotfiles.nix/home/files.nix

16 lines
336 B
Nix
Raw Normal View History

2022-09-15 21:17:21 +00:00
{ config, ... }: {
# Misc configuration files --------------------------------------------------------------------{{{
xdg = {
enable = true;
};
home.file.".pijulconfig".text = ''
[author]
name = "mat"
full_name = "${config.programs.git.userName}"
email = "${config.programs.git.userEmail}"
'';
# }}}
}