Common: add direnv

This commit is contained in:
Toast 2024-02-23 12:07:22 +01:00
parent 2018954c98
commit c0529d5225
2 changed files with 8 additions and 0 deletions

View file

@ -14,6 +14,7 @@
./bat.nix
./btop.nix
./helix.nix
./direnv.nix
];
# Some programs dont have a programs.*.enable option, so I install their package here
environment.systemPackages = with pkgs; [

View file

@ -0,0 +1,7 @@
{ ... }:
{
programs.direnv = {
enable = true;
};
}