Compare commits

..

2 commits

2 changed files with 8 additions and 1 deletions

View file

@ -54,7 +54,7 @@ in {
programs.git = {
signing = {
key = config.local.services.gpg.defaultKey;
signByDefault = true;
signByDefault = false;
};
};
};

View file

@ -6,6 +6,7 @@
}:
with lib; let
cfg = config.local.gui;
laptop = config.trivium.laptop.enable;
in {
config = mkIf cfg.enable {
programs.waybar = {
@ -33,7 +34,13 @@ in {
"temperature"
"keyboard-state"
"tray"
] ++ lists.optionals laptop [
"battery"
];
"battery" = mkIf laptop {
format = "{capacity}% {icon}";
format-icons = ["" "" "" "" ""];
};
"keyboard-state" = {
numlock = true;
capslock = true;