16 lines
336 B
Nix
16 lines
336 B
Nix
|
{ 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}"
|
||
|
'';
|
||
|
# }}}
|
||
|
}
|