Compare commits

..

No commits in common. "1e3eee277f69339abbd9646143cd3978e7b38d5d" and "d33c6f314c4547bfaf25e27a622d714e2ba1f038" have entirely different histories.

3 changed files with 5 additions and 15 deletions

View file

@ -18,7 +18,7 @@ in
powerOnBoot = true; powerOnBoot = true;
settings = { settings = {
General = { General = {
Experimental = true; # show battery percentages Enable = "Source,Sink,Media,Socket";
}; };
}; };
}; };

View file

@ -27,12 +27,5 @@ in
thermald.enable = true; thermald.enable = true;
upower.enable = true; upower.enable = true;
}; };
services.udev.extraRules = ''
# disable USB auto suspend for Keychron Q3 HE
ACTION=="bind", SUBSYSTEM=="usb", ATTR{idVendor}=="3434", ATTR{idProduct}=="0b31", ATTR{power/autosuspend}="-1"
# disable USB auto suspend for Keychron Q3
ACTION=="bind", SUBSYSTEM=="usb", ATTR{idVendor}=="3434", ATTR{idProduct}=="0123", ATTR{power/autosuspend}="-1"
'';
}; };
} }

View file

@ -8,12 +8,9 @@ in
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
services.displayManager.lemurs = {
# start sway if login happens enable = true;
environment.interactiveShellInit = '' settings.environment_switcher.include_tty_shell = true;
if test `tty` = /dev/tty1; then };
exec sway
fi
'';
}; };
} }