lil tv twaekies

This commit is contained in:
alisceon 2025-12-20 13:50:35 +01:00
parent 363adbbf0d
commit d2a352c965
2 changed files with 22 additions and 2 deletions

View file

@ -129,6 +129,16 @@
hostname = "books.lab.the.malice.zone"; hostname = "books.lab.the.malice.zone";
user = "root"; user = "root";
}; };
"tower" = {
forwardAgent = true;
addKeysToAgent = "yes";
hostname = "tower.home.the.malice.zone";
};
"electra" = {
forwardAgent = true;
addKeysToAgent = "yes";
hostname = "electra.home.the.malice.zone";
};
}; # end matchBlocks }; # end matchBlocks
}; # end ssh }; # end ssh
direnv = { direnv = {

View file

@ -257,10 +257,11 @@
"Mod4+space" = ''exec ${notify} -t 2000 "$(xonsh ~/.nixos_config/util/get_xkb.xsh)"''; "Mod4+space" = ''exec ${notify} -t 2000 "$(xonsh ~/.nixos_config/util/get_xkb.xsh)"'';
"${key_mod}+Shift+r" = "reload"; "${key_mod}+Shift+r" = "reload";
"${key_mod}+Ctrl+r" = "restart"; "${key_mod}+Ctrl+r" = "restart";
"${key_mod}+Escape" = "exec ${nag} -m 'Shutdown options:' -B 'Power Off' 'systemctl poweroff' -B 'Reboot' 'systemctl reboot' -B 'Logout' 'swaymsg exit'"; "${key_mod}+Escape" = "exec ${nag} -m 'Shutdown options:' -Z 'Power Off' 'systemctl poweroff' -Z 'Reboot' 'systemctl reboot' -Z 'Logout' 'swaymsg exit'";
"${key_mod}+Shift+Backspace" = "exec ${nag} -m 'TuneD profiles:' -Z 'Performance' 'tuned-adm profile accelerator-performance' -Z 'Balanced' 'tuned-adm profile balanced' -Z 'Power Save' 'tuned-adm profile powersave'";
"${key_mod}+Return" = "exec ${term}"; "${key_mod}+Return" = "exec ${term}";
"${key_mod}+Shift+q" = "kill"; "${key_mod}+Shift+q" = "kill";
"${key_mod}+F4" = "kill"; "Alt+F4" = "kill";
# Locking and idle # Locking and idle
"${key_mod}+L" = "exec ${lock}"; "${key_mod}+L" = "exec ${lock}";
@ -460,6 +461,7 @@
]; ];
modules-right = [ modules-right = [
"tray" "tray"
"idle_inhibitor"
"network" "network"
"pulseaudio" "pulseaudio"
"battery" "battery"
@ -477,6 +479,13 @@
icon-size = 24; icon-size = 24;
spacing = 8; spacing = 8;
}; };
"idle_inhibitor" = {
format = "| {icon} ";
format-icons = {
activated = "OuO";
deactivated = "=w=";
};
};
"clock" = { "clock" = {
interval = 60; interval = 60;
tooltip = true; tooltip = true;
@ -768,5 +777,6 @@
# this right here offends me https://source.chromium.org/chromium/chromium/src/+/main:base/nix/xdg_util.cc;l=179-180 # this right here offends me https://source.chromium.org/chromium/chromium/src/+/main:base/nix/xdg_util.cc;l=179-180
systemd.user.sessionVariables = { systemd.user.sessionVariables = {
GNOME_DESKTOP_SESSION_ID = "999"; GNOME_DESKTOP_SESSION_ID = "999";
SHELL_THICCNESS = "LOW";
}; };
} # end file } # end file