mlaga97-nix/systems/living-room/home.nix
2025-07-29 22:26:08 -05:00

15 lines
359 B
Nix

{ pkgs, ... }: {
imports = [
];
xsession.windowManager.i3 = {
config.startup = [
{ command = "xrandr --output HDMI-1 --mode 1920x1080 --rate 60 --primary"; }
];
extraConfig = ''
# House Lights
bindsym $mod+Shift+d exec curl -X POST https://homeassistant.mlaga97.space/api/webhook/IBlEw1rhZcmvRuUGKBMWIS3h
'';
};
}