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,
|
inputs,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: let
|
}:
|
||||||
theme = import ../../../lib/theme {inherit pkgs;};
|
let
|
||||||
in {
|
theme = import ../../../lib/theme { inherit pkgs; };
|
||||||
|
in
|
||||||
|
{
|
||||||
imports = [
|
imports = [
|
||||||
inputs.catppuccin.homeManagerModules.catppuccin
|
inputs.catppuccin.homeManagerModules.catppuccin
|
||||||
|
|
||||||
|
./direnv.nix
|
||||||
./neomutt.nix
|
./neomutt.nix
|
||||||
./secrets.nix
|
./secrets.nix
|
||||||
./sops.nix
|
./sops.nix
|
||||||
|
|
@ -34,7 +37,12 @@ in {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
sops
|
sops
|
||||||
inputs.nixvim.packages.x86_64-linux.default
|
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
|
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