63 lines
1.0 KiB
Nix
63 lines
1.0 KiB
Nix
{lib, ...}: {
|
|
programs.noctalia-shell.settings.controlCenter = lib.mkForce {
|
|
position = "close_to_bar_button";
|
|
diskPath = "/home";
|
|
shortcuts = {
|
|
left = [
|
|
{
|
|
id = "Network";
|
|
}
|
|
{
|
|
id = "Bluetooth";
|
|
}
|
|
{
|
|
id = "WallpaperSelector";
|
|
}
|
|
{
|
|
id = "NoctaliaPerformance";
|
|
}
|
|
];
|
|
right = [
|
|
{
|
|
id = "Notifications";
|
|
}
|
|
{
|
|
id = "PowerProfile";
|
|
}
|
|
{
|
|
id = "KeepAwake";
|
|
}
|
|
{
|
|
id = "NightLight";
|
|
}
|
|
];
|
|
};
|
|
cards = [
|
|
{
|
|
enabled = true;
|
|
id = "profile-card";
|
|
}
|
|
{
|
|
enabled = true;
|
|
id = "shortcuts-card";
|
|
}
|
|
{
|
|
enabled = true;
|
|
id = "audio-card";
|
|
}
|
|
{
|
|
enabled = true;
|
|
id = "brightness-card";
|
|
}
|
|
{
|
|
enabled = true;
|
|
id = "weather-card";
|
|
}
|
|
{
|
|
enabled = true;
|
|
id = "media-sysmon-card";
|
|
}
|
|
];
|
|
};
|
|
}
|