Hide cursor when typing, add Zathura, disable cq-editor due to python breakage

This commit is contained in:
Erwin Boskma 2022-02-21 21:20:04 +01:00
parent dba5345455
commit 9934b2aad7
Signed by: erwin
GPG key ID: 270B20D17394F7E5
3 changed files with 11 additions and 1 deletions

View file

@ -217,6 +217,12 @@ in
workspaceAutoBackAndForth = true; workspaceAutoBackAndForth = true;
seat = {
"*" = {
hide_cursor = "when-typing enable";
};
};
}; };
extraConfig = '' extraConfig = ''
assign [app_id="firefox"] 1 assign [app_id="firefox"] 1

View file

@ -9,6 +9,8 @@ in
config = mkIf (cfg.enable) { config = mkIf (cfg.enable) {
programs.zathura = { programs.zathura = {
enable = true; enable = true;
extraConfig = (builtins.readFile ./theme);
}; };
}; };
} }

View file

@ -75,6 +75,7 @@ in
sway.enable = true; sway.enable = true;
tmux.enable = true; tmux.enable = true;
waybar.enable = true; waybar.enable = true;
zathura.enable = true;
}; };
}; };
@ -82,7 +83,7 @@ in
bandwhich bandwhich
bitwarden bitwarden
bottom bottom
inputs.cq-flake.packages.${pkgs.system}.cq-editor # inputs.cq-flake.packages.${pkgs.system}.cq-editor
fd fd
ffmpeg ffmpeg
ffmpeg.bin ffmpeg.bin
@ -200,6 +201,7 @@ in
../../home-manager/modules/sway ../../home-manager/modules/sway
../../home-manager/modules/tmux ../../home-manager/modules/tmux
../../home-manager/modules/waybar ../../home-manager/modules/waybar
../../home-manager/modules/zathura
]; ];
}; };