Shared configuration for multiple hosts #3

Merged
martials merged 15 commits from shared into main 2025-04-15 16:40:44 +00:00
133 changed files with 1602 additions and 1110 deletions
Showing only changes of commit f0ce1f4169 - Show all commits

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,9 +41,13 @@
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;