Modularize the shell config

This commit is contained in:
SebastianStork 2024-04-17 09:42:55 +02:00
parent cbebff390c
commit 30faa1f2bf
10 changed files with 104 additions and 74 deletions

View file

@ -0,0 +1,13 @@
{
config,
lib,
...
}: {
options.myConfig.shell.direnv.enable = lib.mkEnableOption "";
config.programs.direnv = lib.mkIf config.myConfig.shell.direnv.enable {
enable = true;
nix-direnv.enable = true;
config.global.hide_env_diff = true;
};
}