feat: drop mako and waybar for caelestia (quickshell)

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2026-04-05 13:04:59 -03:00
parent c788d33a0a
commit f7b483f091
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
13 changed files with 181 additions and 276 deletions

View file

@ -0,0 +1,40 @@
{ caelestia-shell, ... }:
{
imports = [
caelestia-shell.homeManagerModules.default
];
programs.caelestia = {
enable = true;
cli = {
enable = true;
};
settings = {
general = {
apps = {
terminal = [ "alacritty" ];
};
idle = {
lockBeforeSleep = false;
timeouts = [ ];
};
};
bar.status = {
showBattery = false;
};
# "Open" notification on clicking.
notifs.actionOnClick = true;
services = {
useFahrenheit = false;
useFahrenheitPerformance = false;
useTwelveHourClock = false;
};
};
};
}