nixdots/modules/home-manager/desktop/noctalia.nix
2026-04-24 17:57:59 +03:00

59 lines
1.2 KiB
Nix

{
pkgs,
inputs,
...
}: {
imports = [
inputs.noctalia.homeModules.default
];
programs.noctalia-shell = {
enable = true;
settings = {
bar = {
density = "compact";
position = "top";
showCapsule = false;
widgets = {
left = [
{id = "Workspace";}
{id = "ActiveWindow";}
];
center = [
];
right = [
{id = "Tray";}
{
alwaysShowPercentage = false;
id = "Battery";
warningThreshold = 30;
}
{
formatHorizontal = "HH:mm";
formatVertical = "HH mm";
id = "Clock";
useMonospacedFont = true;
usePrimaryColor = true;
}
{
id = "ControlCenter";
}
];
};
};
colorSchemes.predefinedScheme = "Rosepine";
general = {
avatarImage = "/home/drfoobar/.face";
radiusRatio = 0.2;
};
location = {
monthBeforeDay = true;
name = "Bursa";
};
wallpaper = {
enabled = false;
};
};
};
}