flake/home-manager/plasma.nix

93 lines
2.5 KiB
Nix
Raw Normal View History

2024-11-29 06:35:23 -05:00
{
programs.plasma = {
enable = true;
2024-12-02 15:56:32 -05:00
workspace = {
theme = "Breeze";
iconTheme = "Breeze Dark";
colorScheme = "CatppuccinMochaBlue";
cursor = {
size = 24;
theme = "Breeze";
};
windowDecorations = {
library = "org.kde.breeze";
theme = "Breeze";
};
};
hotkeys.commands = {
"spectacle-screenshot" = {
name = "Spectacle Screenshot";
command = "/etc/nixos/scripts/py/spectacle-screenshot.py";
comment =
"Take a screenshot of a region on the screen and automatically upload it to Zipline";
keys = [ "Print" "Meta+S" ];
};
"spectacle-recording" = {
name = "Spectacle Recording";
command = "/etc/nixos/scripts/py/spectacle-screenshot.py --record";
comment =
"Record a region on the screen and automatically upload it to Zipline";
keys = [ "Shift+Print" "Meta+Shift+S" ];
};
};
2024-11-29 06:35:23 -05:00
panels = [{
location = "bottom";
screen = "all";
2024-12-02 16:01:42 -05:00
widgets = [
2024-11-29 06:35:23 -05:00
{
kickoff = {
sortAlphabetically = true;
icon = "nix-snowflake";
};
}
{
iconTasks = {
launchers = [
"applications:zen"
"applications:vesktop"
"applications:steam"
"applications:org.prismlauncher.PrismLauncher"
"applications:code"
"applications:org.kde.konsole"
"applications:org.kde.dolphin"
];
};
}
{
digitalClock = {
calendar.firstDayOfWeek = "sunday";
time.format = "12h";
};
}
];
}];
2024-12-02 15:56:32 -05:00
window-rules = [{
description = "Application settings for Code";
match = {
window-class = {
value = "code code-url-handler";
type = "exact";
};
};
apply = {
desktopfile =
"/etc/profiles/per-user/cswimr/share/applications/code.desktop";
};
}];
spectacle.shortcuts = {
captureActiveWindow = [ ];
captureCurrentMonitor = [ ];
captureEntireDesktop = [ ];
2024-12-02 16:01:42 -05:00
captureRectangularRegion = [ ];
2024-12-02 15:56:32 -05:00
captureWindowUnderCursor = [ ];
launch = [ ];
2024-11-29 06:35:23 -05:00
};
configFile = {
2024-12-02 15:56:32 -05:00
# These three plugins have no higher level modules
2024-11-29 06:35:23 -05:00
"kwinrc"."Plugins"."sheetEnabled" = true;
"kwinrc"."Plugins"."wobblywindowsEnabled" = true;
"kwinrc"."Plugins"."zoomEnabled" = false;
};
};
}