dotfiles.nix/home/files.nix

24 lines
612 B
Nix
Raw Normal View History

2022-09-15 21:17:21 +00:00
{ config, ... }: {
# Misc configuration files --------------------------------------------------------------------{{{
2023-08-23 00:50:29 +00:00
xdg = { enable = true; };
2022-09-15 21:17:21 +00:00
2022-10-10 21:54:15 +00:00
home.file = {
".pijulconfig".text = ''
[author]
name = "${config.home.primaryUser.username}"
full_name = "${config.home.primaryUser.fullName}"
email = "${config.home.primaryUser.email}"
'';
".tarsnaprc".text = ''
cachedir ${config.xdg.cacheHome}
keyfile ${config.xdg.configHome}/tarsnap/read-write-delete.key
nodump
print-stats
checkpoint-bytes 1G
humanize-numbers
'';
};
2022-09-15 21:17:21 +00:00
# }}}
}