FEAT: added physlock support
This commit is contained in:
parent
0cab3c28db
commit
5c7d7d73a5
|
@ -82,6 +82,7 @@
|
|||
};
|
||||
};
|
||||
services.autorandr.enable = true;
|
||||
services.physlock.enable = true;
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
|
|
|
@ -12,4 +12,5 @@ xsetroot -solid '#000000'
|
|||
#
|
||||
#touchegg &
|
||||
#dunst &
|
||||
polybar &
|
||||
exec dbus-launch --sh-syntax --exit-with-session -- herbstluftwm --locked
|
||||
|
|
|
@ -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 = [
|
||||
|
|
Loading…
Reference in a new issue