♻️ Moved git key to desktop config, step variable in hyprpanel audio

This commit is contained in:
Martin Berg Alstad 2025-04-13 11:40:05 +02:00
parent a0537f5634
commit f0ce1f4169
Signed by: martials
GPG Key ID: 706F53DD087A91DE
3 changed files with 11 additions and 8 deletions

View File

@ -7,4 +7,6 @@
imports = [
(lib.custom.relativeToRoot "shared/home-manager")
];
programs.git.signing.key = "706F53DD087A91DE";
}

View File

@ -20,10 +20,7 @@
p = "push";
};
signing = {
signByDefault = true;
key = "706F53DD087A91DE";
};
signing.signByDefault = true;
extraConfig = {
push.autoSetupRemote = true;

View File

@ -41,10 +41,14 @@
customModules.kbLayout.leftClick = "hyprctl switchxkblayout keychron-keychron-k8-pro next";
launcher.autoDetectIcon = true;
network.label = false;
volume = {
scrollDown = "${pkgs.hyprpanel}/bin/hyprpanel 'vol -1'";
scrollUp = "${pkgs.hyprpanel}/bin/hyprpanel 'vol +1'";
};
volume =
let
step = 1;
in
{
scrollDown = "${pkgs.hyprpanel}/bin/hyprpanel 'vol -${step}'";
scrollUp = "${pkgs.hyprpanel}/bin/hyprpanel 'vol +${step}'";
};
workspaces = {
show_icons = false;
show_numbered = true;