[direnv] Create module

This commit is contained in:
Tibo De Peuter 2023-11-14 22:32:04 +01:00
parent 125803927c
commit 7dda8086d4
5 changed files with 26 additions and 46 deletions

View file

@ -1,8 +1,9 @@
{
imports = [
./direnv
./home-manager
./sops
./ssh
./spotify-adblock
./ssh
];
}

View file

@ -0,0 +1,22 @@
{ config, lib, pkgs, ... }:
let
cfg = sisyphus.programs.direnv;
in {
options.sisyphus.programs.direnv.enable = lib.mkEnableOption "direnv";
config = lib.mkIf cfg.enable {
programs.direnv = {
enable = true;
nix-direnv.enable = true; # Use nix-specific direnv.
persistDerivations = true; # Sets the extraOptions listed below.
};
# This is also done by setting programs.direnv.persistDerivations.
# Keep derivations so shells don't break.
nix.extraOption = ''
keep-outputs = true
keep-derivations = true
'';
};
};