configures noctalia

This commit is contained in:
Dennis Schoepf 2026-02-06 20:37:53 +01:00
parent 4997c38582
commit 3caab2bb10
6 changed files with 96 additions and 17 deletions

View file

@ -3,8 +3,8 @@
./awww
./cliphist
./fuzzel
./waybar
./niri
./swaync
./noctalia
];
}

View file

@ -0,0 +1,72 @@
{ ... }:
{
programs.noctalia-shell = {
enable = true;
systemd.enable = true;
settings = {
# configure noctalia here
bar = {
density = "compact";
position = "left";
floating = true;
marginHorizontal = 4;
marginVertical = 4;
showCapsule = false;
widgets = {
left = [
{
id = "ControlCenter";
useDistroLogo = true;
}
{
id = "Network";
}
{
id = "Bluetooth";
}
];
center = [
{
hideUnoccupied = false;
id = "Workspace";
labelMode = "none";
}
];
right = [
{
alwaysShowPercentage = false;
id = "Battery";
warningThreshold = 30;
}
{
formatHorizontal = "HH:mm";
formatVertical = "HH mm";
id = "Clock";
useMonospacedFont = true;
usePrimaryColor = true;
}
];
};
};
colorSchemes.predefinedScheme = "Monochrome";
general = {
avatarImage = "/home/drfoobar/.face";
radiusRatio = 0.2;
};
location = {
monthBeforeDay = true;
name = "Munich, Germany";
};
};
};
home.file.".cache/noctalia/wallpapers.json" = {
text = builtins.toJSON {
defaultWallpaper = "~/Pictures/Wallpapers/safe/dark/mountain.jpg";
wallpapers = {
"DP-1" = "~/Pictures/Wallpapers/safe/dark/mountain.jpg";
};
};
};
}