feat: add nix-direnv
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
parent
5f59d5f972
commit
e58e79888a
2 changed files with 25 additions and 4 deletions
|
|
@ -2,12 +2,15 @@
|
|||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
theme = import ../../../lib/theme {inherit pkgs;};
|
||||
in {
|
||||
}:
|
||||
let
|
||||
theme = import ../../../lib/theme { inherit pkgs; };
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
inputs.catppuccin.homeManagerModules.catppuccin
|
||||
|
||||
./direnv.nix
|
||||
./neomutt.nix
|
||||
./secrets.nix
|
||||
./sops.nix
|
||||
|
|
@ -34,7 +37,12 @@ in {
|
|||
home.packages = with pkgs; [
|
||||
sops
|
||||
inputs.nixvim.packages.x86_64-linux.default
|
||||
(pass.withExtensions (exts: [exts.pass-update exts.pass-import exts.pass-audit exts.pass-checkup]))
|
||||
(pass.withExtensions (exts: [
|
||||
exts.pass-update
|
||||
exts.pass-import
|
||||
exts.pass-audit
|
||||
exts.pass-checkup
|
||||
]))
|
||||
passff-host
|
||||
];
|
||||
|
||||
|
|
|
|||
13
home/lander/global/direnv.nix
Normal file
13
home/lander/global/direnv.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
programs = {
|
||||
direnv = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
|
||||
zsh.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue