Disable fingerprint on Arendia + hints in Avante + tmux settings
This commit is contained in:
parent
7309bc192e
commit
bc1c6e9054
|
@ -13,7 +13,8 @@ return {
|
|||
},
|
||||
behaviour = {
|
||||
enable_cursor_planning_mode = false, -- enable cursor planning mode!
|
||||
}
|
||||
},
|
||||
hints = { enabled = false }
|
||||
},
|
||||
-- if you want to build from source then do `make BUILD_FROM_SOURCE=true`
|
||||
build = "nix-shell -p cmake --command make",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ inputs, config, pkgs, ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
programs.tmux = {
|
||||
shell = "${pkgs.zsh}/bin/zsh";
|
||||
|
@ -17,23 +17,22 @@
|
|||
{
|
||||
plugin = pkgs.tmuxPlugins.catppuccin;
|
||||
extraConfig = ''
|
||||
set -g @catppuccin_window_current_color "#0F7FCF"
|
||||
set -g @catppuccin_window_current_background "#1F2430"
|
||||
set -g @catppuccin_window_default_color "#5a5d70"
|
||||
set -g @catppuccin_window_default_background "#181825"
|
||||
set -g @catppuccin_pane_border_style "fg=#181825"
|
||||
set -g @catppuccin_pane_active_border_style "fg=#023269"
|
||||
set -g @catppuccin_status_background "default"
|
||||
set -g @catppuccin_window_default_text "#W"
|
||||
set -g @catppuccin_window_current_text "#W"
|
||||
set -g @catppuccin_status_modules_right "directory"
|
||||
set -g @catppuccin_window_left_separator ""
|
||||
set -g @catppuccin_window_right_separator " "
|
||||
set -g @catppuccin_directory_color "#0F7FCF"
|
||||
set -g @catppuccin_date_time_text "%Y-%m-%d %H:%M:%S"
|
||||
set -g @catppuccin_menu_selected_style "fg=#{thm_gray},bg=#0F7FCF"
|
||||
set -ogq @catppuccin_flavor "mocha"
|
||||
set -ogq @catppuccin_window_status_style "rounded"
|
||||
set -ogq @catppuccin_window_current_number_color "#1F2430"
|
||||
set -ogq @catppuccin_window_current_text_color "#0F7FCF"
|
||||
set -ogq @catppuccin_window_number_color "#181825"
|
||||
set -ogq @catppuccin_window_text_color "#5a5d70"
|
||||
set -ogq @catppuccin_window_current_text " #{b:pane_current_path}"
|
||||
set -ogq @catppuccin_window_text " #{b:pane_current_path}"
|
||||
set -ogq @catppuccin_pane_border_style "fg=#181825"
|
||||
set -ogq @catppuccin_pane_active_border_style "fg=#023269"
|
||||
set -ogq @catppuccin_directory_color "#0F7FCF"
|
||||
set -ogq @catppuccin_date_time_text "%Y-%m-%d %H:%M:%S"
|
||||
set -ogq @catppuccin_menu_selected_style "fg=#{@thm_gray},bg=#0F7FCF"
|
||||
set -ogq @catppuccin_status_background "default"
|
||||
set -ogq status-right "#{E:@catppuccin_status_directory}"
|
||||
'';
|
||||
|
||||
}
|
||||
];
|
||||
|
||||
|
|
|
@ -49,11 +49,11 @@ in {
|
|||
# enable = true;
|
||||
# backend = "python-validity";
|
||||
# };
|
||||
services."06cb-009a-fingerprint-sensor" = {
|
||||
enable = true;
|
||||
backend = "libfprint-tod";
|
||||
calib-data-file = ./files/calib-data-2.bin;
|
||||
};
|
||||
# services."06cb-009a-fingerprint-sensor" = {
|
||||
# enable = true;
|
||||
# backend = "libfprint-tod";
|
||||
# calib-data-file = ./files/calib-data-2.bin;
|
||||
# };
|
||||
|
||||
# virtualisation
|
||||
virtualisation.libvirtd.enable = true;
|
||||
|
|
Loading…
Reference in New Issue