fix(tazjin/tverskoy): Persist Zoxide state between reboots

Change-Id: Ib1e1fe9749e56eefc83016b1946e6fe0b1f72339
This commit is contained in:
Vincent Ambo 2021-11-27 17:40:07 +03:00
parent 604319850c
commit 67d7bc2fa8

View file

@ -339,6 +339,7 @@ in lib.fix(self: {
".local/share/Steam"
".local/share/direnv"
".local/share/fish"
".local/share/zoxide"
".mozilla/firefox"
".password-store"
".rustup"
@ -365,6 +366,13 @@ in lib.fix(self: {
};
};
programs.fish = {
enable = true;
interactiveShellInit = ''
${pkgs.zoxide}/bin/zoxide init fish | source
'';
};
services.screen-locker = {
enable = true;
enableDetectSleep = true;