nix-config/modules/home/noctalia.nix
2026-07-18 17:17:50 +02:00

27 lines
480 B
Nix

{ inputs, pkgs, ... }:
{
imports = [
inputs.noctalia.homeModules.default
];
programs.noctalia-shell = {
enable = true;
settings = {
location = {
name = "Munich, Germany";
firstDayOfWeek = 0;
};
bar = {
density = "default";
position = "top";
showCapsule = true;
};
colorSchemes.predefinedScheme = "Dracula";
notifications = {
location = "bottom_right";
};
};
};
}