Compare commits

...

2 Commits

Author SHA1 Message Date
mandlm 2b901acd4a
fix(i3): use absolute path to lockscreen image 2022-07-12 15:56:20 +02:00
mandlm 077daf284b
feat(zsh): enable direnv separately 2022-07-12 15:56:01 +02:00
4 changed files with 12 additions and 3 deletions

10
home-manager/direnv.nix Normal file
View File

@ -0,0 +1,10 @@
{ config, lib, pkgs, user, ... }:
{
programs = {
direnv = {
enable = true;
enableZshIntegration = true;
};
};
}

View File

@ -91,6 +91,6 @@ in
services.screen-locker = { services.screen-locker = {
enable = true; enable = true;
lockCmd = "${pkgs.i3lock}/bin/i3lock --nofork --image ~/.config/i3/wallpapers/nix-wallpaper-dracula.png"; lockCmd = "${pkgs.i3lock}/bin/i3lock --nofork --image /home/mandlm/.config/i3/wallpapers/nix-wallpaper-dracula.png";
}; };
} }

View File

@ -13,7 +13,6 @@
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
plugins = [ plugins = [
"direnv"
"vi-mode" "vi-mode"
]; ];
}; };

View File

@ -23,7 +23,6 @@
whatsapp-for-linux whatsapp-for-linux
nextcloud-client nextcloud-client
keepassxc keepassxc
direnv
tree tree
light light
element-desktop element-desktop
@ -47,5 +46,6 @@
home-manager/starship.nix home-manager/starship.nix
home-manager/i3 home-manager/i3
./home-manager/rofi.nix ./home-manager/rofi.nix
./home-manager/direnv.nix
]; ];
} }