Extract a direnv mixin

This commit is contained in:
Oliver Davies 2025-04-05 09:00:00 +01:00
parent 6c9921f45d
commit 3e0b574052
10 changed files with 13 additions and 28 deletions

View file

@ -3,7 +3,6 @@
{
imports = [
./bin
./direnv.nix
./fzf.nix
./git.nix
./neovim

View file

@ -1,18 +0,0 @@
{ config, lib, ... }:
with lib;
{
options.homeManagerModules.direnv.enable = mkEnableOption "Enable direnv";
config = mkIf config.homeManagerModules.direnv.enable {
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
silent = true;
};
};
}