Restructure to use flakes

This commit is contained in:
2022-02-15 15:44:40 +01:00
parent f74a79d12f
commit 8abcbd0cc7
33 changed files with 1441 additions and 0 deletions

14
home/direnv.nix Normal file
View File

@ -0,0 +1,14 @@
{ ... }: {
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv = {
enable = true;
};
};
xdg.configFile."direnv/config.toml".text = ''
[global]
warn_timeout = "1000s"
'';
}