27 lines
480 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|