2025-12-17 18:27:43 +00:00
|
|
|
{ pkgs, inputs, vars, ... }:
|
2025-12-11 23:46:49 +00:00
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
inputs.noctalia.homeModules.default
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
programs.noctalia-shell = {
|
|
|
|
|
enable = true;
|
2025-12-12 19:21:02 +00:00
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
|
bar = {
|
|
|
|
|
density = "compact";
|
2025-12-17 18:27:43 +00:00
|
|
|
position = "top";
|
|
|
|
|
floating = true;
|
|
|
|
|
showCapsule = true;
|
2025-12-12 19:21:02 +00:00
|
|
|
widgets = {
|
|
|
|
|
left = [
|
|
|
|
|
{
|
|
|
|
|
id = "ControlCenter";
|
|
|
|
|
useDistroLogo = true;
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
id = "WiFi";
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
id = "Bluetooth";
|
|
|
|
|
}
|
2025-12-17 18:27:43 +00:00
|
|
|
{
|
|
|
|
|
id = "ActiveWindow";
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
id = "MediaMini";
|
|
|
|
|
}
|
2025-12-12 19:21:02 +00:00
|
|
|
];
|
|
|
|
|
center = [
|
|
|
|
|
{
|
|
|
|
|
hideUnoccupied = false;
|
|
|
|
|
id = "Workspace";
|
|
|
|
|
labelMode = "none";
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
right = [
|
2025-12-17 18:27:43 +00:00
|
|
|
{
|
|
|
|
|
id = "Volume";
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
id = "Tray";
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
id = "NotificationHistory";
|
|
|
|
|
}
|
2025-12-12 19:21:02 +00:00
|
|
|
{
|
2025-12-17 18:27:43 +00:00
|
|
|
id = "Clock";
|
2025-12-12 19:21:02 +00:00
|
|
|
formatHorizontal = "HH:mm";
|
|
|
|
|
formatVertical = "HH mm";
|
|
|
|
|
useMonospacedFont = true;
|
|
|
|
|
usePrimaryColor = true;
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
colorSchemes.predefinedScheme = "Monochrome";
|
|
|
|
|
general = {
|
2025-12-17 18:27:43 +00:00
|
|
|
avatarImage = "$NIX_FLAKE_PATH/home-manager/roles/common/${vars.user}.webp";
|
2025-12-12 19:21:02 +00:00
|
|
|
radiusRatio = 0.2;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
location = {
|
|
|
|
|
monthBeforeDay = true;
|
|
|
|
|
name = "Severn, Maryland";
|
2025-12-17 18:27:43 +00:00
|
|
|
useFahrenheit = true;
|
|
|
|
|
use12hourFormat = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
screenRecorder = {
|
|
|
|
|
directory = "$HOME/Videos/ScreenRecordings";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
wallpaper = {
|
|
|
|
|
directory = "$NIX_FLAKE_PATH/home-manager/roles/desktop/common/wallpapers";
|
|
|
|
|
randomEnabled = true;
|
2025-12-17 18:28:12 +00:00
|
|
|
};
|
2025-12-17 18:27:43 +00:00
|
|
|
|
|
|
|
|
dock = {
|
|
|
|
|
enabled = false;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
network = {
|
|
|
|
|
wifiEnabled = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
templates = {
|
|
|
|
|
qt = true;
|
|
|
|
|
alactirry = true;
|
|
|
|
|
fuzzel = true;
|
|
|
|
|
discord = true;
|
|
|
|
|
niri = true;
|
2025-12-12 19:21:02 +00:00
|
|
|
};
|
|
|
|
|
};
|
2025-12-11 23:46:49 +00:00
|
|
|
};
|
|
|
|
|
}
|