2025-12-11 23:46:49 +00:00
|
|
|
{ pkgs, inputs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
inputs.noctalia.homeModules.default
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
programs.noctalia-shell = {
|
|
|
|
|
enable = true;
|
2025-12-12 19:21:02 +00:00
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
}
|