nixos-config/home-manager/plasma.nix

104 lines
2.2 KiB
Nix
Raw Normal View History

2024-06-25 13:57:09 +02:00
{ extra, ... }:
2024-06-25 12:11:51 +02:00
{
programs.plasma = {
enable = true;
2024-07-27 13:37:52 +02:00
overrideConfig = true;
2024-06-25 12:11:51 +02:00
workspace = {
lookAndFeel = "org.kde.breezedark.desktop";
2024-06-25 16:01:07 +02:00
wallpaper = "${extra.wall}";
2024-06-25 12:11:51 +02:00
};
kscreenlocker = {
2024-06-25 16:01:07 +02:00
wallpaper = "${extra.wall}";
2024-06-25 12:11:51 +02:00
};
hotkeys.commands."launch-alacritty" = {
name = "Launch alacritty";
key = "Meta+Return";
2024-08-21 13:39:57 +02:00
command = "wezterm";
2024-06-25 12:11:51 +02:00
};
hotkeys.commands."cpypsk" = {
name = "Launch cpypsk";
key = "Meta+p";
command = "${extra.cpypsk}";
};
fonts = {
general = {
family = "SAX2 Nerd Font";
pointSize = 10;
};
};
panels = [
{
location = "bottom";
floating = true;
height = 44;
widgets = [
{
name = "org.kde.plasma.kickoff";
config = {
General.icon = "nix-snowflake-white";
};
}
{
name = "org.kde.plasma.icontasks";
config = {
General.launchers = [
"applications:thunderbird.desktop"
2024-08-21 13:39:57 +02:00
"applications:org.wezfurlong.wezterm.desktop"
2024-06-25 12:11:51 +02:00
"applications:firefox.desktop"
"applications:discord.desktop"
];
};
}
{
systemTray.items = {
shown = [
"org.kde.plasma.battery"
"org.kde.plasma.bluetooth"
"org.kde.plasma.networkmanagement"
"org.kde.plasma.volume"
];
};
}
{
digitalClock = {
calendar.firstDayOfWeek = "monday";
time.format = "24h";
};
}
];
}
];
window-rules = [
{
2024-08-21 13:39:57 +02:00
description = "wezterm";
2024-06-25 12:11:51 +02:00
match = {
window-class = {
2024-08-21 13:39:57 +02:00
value = "wezterm";
2024-06-25 12:11:51 +02:00
type = "substring";
};
window-types = [ "normal" ];
};
apply = {
noborder = {
value = true;
apply = "force";
};
maximizehoriz = true;
maximizevert = true;
};
}
];
};
home.packages = [
extra.rc2nix
];
}