This commit is contained in:
41666 2023-12-15 01:21:05 -05:00
parent 9aa4e34606
commit d510a67d3a
3 changed files with 13 additions and 2 deletions

View file

@ -7,7 +7,7 @@
nix-direnv.enable = true;
};
home.sessionVariables.DIRENV_LOG_FORMAT = "";
home.sessionVariables.DIRENV_LOG_FORMAT = " ";
programs.zsh.enable = true;
programs.fish.enable = true;

View file

@ -0,0 +1,10 @@
{ pkgs, ... }: {
programs.kitty = {
enable = true;
shellIntegration.mode = "enabled";
theme = "Tomorrow Night";
environment = {
DIRENV_LOG_FORMAT = "";
};
};
}

View file

@ -2,7 +2,8 @@
imports = [
../common
../common/home-user.nix
../../features/kitty.nix
../../features/vesktop
];
}