config.nix/home/desktop/shell/noctalia.nix
2026-04-11 17:21:28 +02:00

55 lines
1.1 KiB
Nix

{
config,
pkgs,
inputs,
lib,
osConfig,
...
}:
{
imports =
if true then
[
inputs.noctalia.homeModules.default
]
else
[ ];
config = {
programs.noctalia-shell =
if osConfig.desktop.shell.noctalia.enable then
{
enable = true;
settings = {
bar = {
density = "compact";
position = "center";
showCapsule = true;
widgets = {
left = [
{
id = "ControlCenter";
useDistroLogo = true;
}
{
id = "Network";
}
{
id = "Bluetooth";
}
];
center = [
{
id = "Workspace";
labelMode = "none";
hideUnoccupied = false;
}
];
};
};
};
}
else
{ };
};
}