nixos-config/home-manager/modules/niri/noctaliashell.nix
gwg313 c818330a0d
some updates
Signed-off-by: gwg313 <gwg313@pm.me>
2026-02-18 22:48:08 -05:00

78 lines
1.6 KiB
Nix

{
pkgs,
inputs,
...
}:
{
imports = [
inputs.noctalia.homeModules.default
];
# configure options
programs.noctalia-shell = {
enable = true;
settings = {
# configure noctalia here
nightLight = {
enabled = true;
};
dock = {
enabled = false;
};
bar = {
density = "default";
position = "top";
floating = true;
showCapsule = false;
widgets = {
left = [
{
id = "ControlCenter";
useDistroLogo = true;
}
{
id = "Network";
}
{
id = "Bluetooth";
}
];
center = [
{
hideUnoccupied = false;
id = "Workspace";
labelMode = "none";
}
];
right = [
{
id = "Tray";
}
{
alwaysShowPercentage = false;
id = "Battery";
warningThreshold = 30;
}
{
formatHorizontal = "HH:mm";
formatVertical = "HH mm";
id = "Clock";
useMonospacedFont = true;
usePrimaryColor = true;
}
];
};
};
colorSchemes.predefinedScheme = "Monochrome";
general = {
avatarImage = "/home/gwg313/.face";
radiusRatio = 0.2;
};
location = {
monthBeforeDay = true;
name = "Ottawa, Canada";
};
};
# this may also be a string or a path to a JSON file.
};
}