nixos/home-manager/roles/desktop/tiling/apps/noctalia.nix

61 lines
1.2 KiB
Nix
Raw Normal View History

2025-12-11 23:46:49 +00:00
{ pkgs, inputs, ... }:
{
imports = [
inputs.noctalia.homeModules.default
];
programs.noctalia-shell = {
enable = true;
settings = {
bar = {
density = "compact";
position = "right";
showCapsule = false;
widgets = {
left = [
{
id = "ControlCenter";
useDistroLogo = true;
}
{
id = "WiFi";
}
{
id = "Bluetooth";
}
];
center = [
{
hideUnoccupied = false;
id = "Workspace";
labelMode = "none";
}
];
right = [
{
formatHorizontal = "HH:mm";
formatVertical = "HH mm";
id = "Clock";
useMonospacedFont = true;
usePrimaryColor = true;
}
];
};
};
colorSchemes.predefinedScheme = "Monochrome";
general = {
avatarImage = "../../common/nest.webp";
radiusRatio = 0.2;
};
location = {
monthBeforeDay = true;
name = "Severn, Maryland";
};
};
2025-12-11 23:46:49 +00:00
};
}