FEAT: added physlock support

This commit is contained in:
Patrick Großmann 2023-02-08 13:12:13 +01:00
parent 0cab3c28db
commit 5c7d7d73a5
Signed by: patrick
GPG key ID: 451F95EFB8BECD0F
3 changed files with 10 additions and 3 deletions

View file

@ -82,6 +82,7 @@
};
};
services.autorandr.enable = true;
services.physlock.enable = true;
nixpkgs.config.allowUnfree = true;

View file

@ -12,4 +12,5 @@ xsetroot -solid '#000000'
#
#touchegg &
#dunst &
polybar &
exec dbus-launch --sh-syntax --exit-with-session -- herbstluftwm --locked

View file

@ -108,13 +108,18 @@
enable = true;
interactiveShellInit = lib.mkMerge [
(lib.mkBefore ''
set -g ATUIN_NOBIND true
set -g fish_greeting
set -g ATUIN_NOBIND true
set -g fish_greeting
set -g fish_autosuggestion_enabled 0
set -U FZF_COMPLETE 2
set -g FZF_COMPLETE 2
'')
(lib.mkAfter ''
bind \cr _atuin_search
# prefix search for up and down arrow
bind -k up history-prefix-search-backward
bind -k down history-prefix-search-forward
#Include atuin auto completions
atuin gen-completions --shell fish | source
'')
];
plugins = [