modularized further

This commit is contained in:
Bryan Ramos 2024-05-11 15:15:19 -04:00
parent 89acce0159
commit fdad9191aa
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
3 changed files with 12 additions and 10 deletions

View file

@ -18,8 +18,17 @@ in
docker
];
programs.bash.initExtra = mkAfter ''
${import ./config/penpot.nix}
'';
programs = {
bash = {
initExtra = mkAfter ''
${import ./config/penpot.nix}
'';
};
direnv = {
enable = true;
enableBashIntegration = true;
nix-direnv.enable = true;
};
};
};
}