This commit is contained in:
Lilith 2025-03-14 14:52:17 +01:00
parent 3f6e9e372c
commit ee9c1366a9
Signed by: lilith
GPG key ID: 8712A0F317C37175
6 changed files with 18 additions and 12 deletions

View file

@ -9,6 +9,8 @@
./env.nix ./env.nix
./firefox
./alacritty.nix ./alacritty.nix
./clipman.nix ./clipman.nix
./common.nix ./common.nix

View file

@ -0,0 +1,3 @@
{zen-browser, ...}: {
home.packages = [ zen-browser.packages.specific ];
}

View file

@ -114,17 +114,13 @@
"$mainMod, backspace, exec, hyprlock" "$mainMod, backspace, exec, hyprlock"
"$mainMod, E, exec, $fileManager" "$mainMod, E, exec, $fileManager"
"$mainMod, A, togglefloating," "$mainMod, A, togglefloating,"
"$mainMod, R, exec, ags -t launcher" "$mainMod, R, exec, rofi -show drun"
"$mainMod, D, pseudo," "$mainMod, D, pseudo,"
"$mainMod, S, togglesplit," "$mainMod, S, togglesplit,"
"$mainMod, Tab, exec, ags -t overview"
"$mainMod, P, togglespecialworkspace, keepass" "$mainMod, P, togglespecialworkspace, keepass"
"$mainMod, P, exec, if (( $(pgrep keepassxc -c) < 2 )); then keepassxc; fi" "$mainMod, P, exec, if (( $(pgrep keepassxc -c) < 2 )); then keepassxc; fi"
"$mainMod, O, togglespecialworkspace, chatgpt"
", print, exec, hyprshot -m region -o /home/lilith/sync/screenshots -z" ", print, exec, hyprshot -m region -o /home/lilith/sync/screenshots -z"
"CTRL, print, exec, hyprshot -m output -o /home/lilith/sync/screenshots -z" "CTRL, print, exec, hyprshot -m output -o /home/lilith/sync/screenshots -z"
@ -168,7 +164,7 @@
", XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%+" ", XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%+"
", XF86AudioLowerVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%-" ", XF86AudioLowerVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%-"
", XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle" ", XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"
", XF86PowerOff, exec, ags -t powermenu" ", XF86PowerOff, exec, systemctl poweroff"
]; ];
}; };
}; };

View file

@ -1,3 +1,10 @@
{hyprpanel, ...}: { {hyprpanel, ...}: {
imports = [ hyprpanel.homeManagerModules.hyprpanel ]; imports = [ hyprpanel.homeManagerModules.hyprpanel ];
programs.hyprpanel = {
enable = true;
overlay.enable = true;
hyprland.enable = true;
};
} }

View file

@ -1,4 +1,4 @@
{pkgs, config, stylix, lib, ...}: { {pkgs, config, lib, ...}: {
programs.rofi = { programs.rofi = {
enable = true; enable = true;
package = pkgs.rofi-wayland; package = pkgs.rofi-wayland;
@ -16,7 +16,7 @@
fg2 = mkLiteral "#${base0A}"; fg2 = mkLiteral "#${base0A}";
fg3 = mkLiteral "#${base0B}"; fg3 = mkLiteral "#${base0B}";
font = config.stylix.fonts.sansSerif.name; # font = config.stylix.fonts.sansSerif.name;
background-color = mkLiteral "transparent"; background-color = mkLiteral "transparent";
text-color = mkLiteral "@fg0"; text-color = mkLiteral "@fg0";

View file

@ -1,7 +1,5 @@
{ stylix, ...}: { {...}: {
imports = [ stylix.homeManagerModules.stylix ];
stylix.targets = { stylix.targets = {
firefox.enable = false; firefox.enable = true;
}; };
} }