Moved direnv config from emacs config to linux general utils

This commit is contained in:
Random936 2025-02-25 18:14:00 -08:00
parent 942bdd517c
commit b4ec2af71d
2 changed files with 7 additions and 7 deletions

View File

@ -26,13 +26,6 @@
];
programs = {
# For integration with shell.nix files
direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
emacs = {
enable = true;
package = pkgs.emacs29;

View File

@ -2,6 +2,7 @@
home.packages = with pkgs; [
# Nix specific utilities
manix
direnv
nix-tree
# Utilities
@ -20,4 +21,10 @@
pciutils
fastfetch
];
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
}