nixos-config/user/usr-plasma.nix
2024-08-05 19:11:04 +02:00

68 lines
1.6 KiB
Nix

{ ... }:
{
programs.plasma = {
enable = true;
workspace.wallpaper = "/home/mo/Bilder/Hintergründe/wallpaper-nix.png";
kscreenlocker.wallpaper = "/home/mo/Bilder/Hintergründe/wallpaper-nix.png";
kwin.titlebarButtons.left = ["keep-above-windows"];
kwin.titlebarButtons.right = ["minimize" "maximize" "close"];
fonts = {
menu.family = "IBM Plex Sans";
menu.pointSize = 10;
menu.weight = "normal";
general.family = "IBM Plex Sans";
general.pointSize = 10;
general.weight = "normal";
small.family = "IBM Plex Sans";
small.pointSize = 8;
small.weight = "normal";
toolbar.family = "IBM Plex Sans";
toolbar.pointSize = 10;
toolbar.weight = "normal";
fixedWidth.family = "IBM Plex Mono";
fixedWidth.pointSize = 12;
fixedWidth.weight = "normal";
windowTitle.family = "IBM Plex Sans";
windowTitle.pointSize = 12;
windowTitle.weight = "medium";
};
workspace.cursor = {
size = 24;
theme = "Breeze_Snow";
};
workspace.colorScheme = "BreezeHellFarbe";
panels = [
{
location = "bottom";
floating = true;
alignment = "center";
height = 46;
lengthMode = "fit";
hiding = "dodgewindows";
widgets = [
"org.kde.plasma.kickoff"
"org.kde.plasma.icontasks"
];
}
{
location = "bottom";
floating = true;
alignment = "right";
height = 36;
lengthMode = "fit";
hiding = "dodgewindows";
widgets = [
"org.kde.plasma.systemtray"
"org.kde.plasma.digitalclock"
];
}
];
};
}