58 lines
1.4 KiB
Nix
58 lines
1.4 KiB
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
#inputs.noctalia.homeModules.default
|
|
];
|
|
|
|
|
|
programs.noctalia-shell = {
|
|
enable = true;
|
|
settings = {
|
|
# configure noctalia here; defaults will
|
|
# be deep merged with these attributes.
|
|
bar = {
|
|
density = "compact";
|
|
position = "top";
|
|
showCapsule = false;
|
|
widgets = {
|
|
left = [
|
|
{ id = "Workspace"; }
|
|
{ id = "ActiveWindow"; }
|
|
|
|
|
|
|
|
];
|
|
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;
|
|
|
|
}
|
|
{ id = "SidePanelToggle"; useDistroLogo = true; }
|
|
|
|
];
|
|
};
|
|
};
|
|
colorSchemes.predefinedScheme = "Rosepine";
|
|
general = {
|
|
avatarImage = "/home/drfoobar/.face";
|
|
radiusRatio = 0.2;
|
|
};
|
|
location = {
|
|
monthBeforeDay = true;
|
|
name = "Bursa";
|
|
};
|
|
};
|
|
# this may also be a string or a path to a JSON file,
|
|
# but in this case must include *all* settings.
|
|
};
|
|
}
|