nixos-config/user/plasma.nix

39 lines
775 B
Nix
Raw Normal View History

2024-08-03 18:11:55 +02:00
{ plasma-manager, pkgs, pkgs-stable, ... }:
2024-08-01 11:48:00 +02:00
{
2024-08-01 13:27:23 +02:00
programs.plasma = {
enable = true;
2024-08-03 18:11:55 +02:00
2024-08-03 19:19:19 +02:00
workspace.cursor = {
size = 24;
theme = "Breeze_Snow";
};
workspace.colorScheme = "BreezeHellFarbe";
2024-08-03 18:11:55 +02:00
panels = [
{
location = "bottom";
floating = true;
alignment = "center";
height = 46;
2024-08-03 18:13:19 +02:00
lengthMode = "fit";
2024-08-03 18:11:55 +02:00
hiding = "dodgewindows";
widgets = [
"org.kde.plasma.kickoff"
"org.kde.plasma.icontasks"
];
}
{
location = "bottom";
floating = true;
alignment = "right";
height = 36;
2024-08-03 18:13:19 +02:00
lengthMode = "fit";
2024-08-03 18:11:55 +02:00
hiding = "dodgewindows";
widgets = [
"org.kde.plasma.systemtray"
"org.kde.plasma.digitalclock"
];
}
];
2024-08-03 12:59:59 +02:00
};
2024-08-01 11:48:00 +02:00
}