nixos-config/home-manager/plasma.nix

83 lines
1.9 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
2024-10-16 23:57:18 +02:00
workspace.lookAndFeel = "org.kde.breezedark.desktop";
2024-06-25 12:11:51 +02:00
kscreenlocker = {
2024-08-23 22:07:47 +02:00
appearance.wallpaper = "${extra.wall}";
2024-06-25 12:11:51 +02:00
};
fonts = {
general = {
family = "SAX2 Nerd Font";
pointSize = 10;
};
};
2024-08-23 22:07:47 +02:00
powerdevil = {
AC.whenLaptopLidClosed = "hibernate";
battery.whenLaptopLidClosed = "hibernate";
lowBattery.whenLaptopLidClosed = "hibernate";
};
2024-06-25 12:11:51 +02:00
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";
};
}
];
}
];
2024-08-26 15:43:01 +02:00
configFile."kcminputrc" = {
2024-08-25 17:53:55 +02:00
"Mouse"."X11LibInputXAccelProfileFlat" = true;
"Mouse"."XLbInptPointerAcceleration" = 0;
};
2024-10-16 19:22:16 +02:00
configFile."startkderc" = {
2024-10-16 23:57:18 +02:00
"General"."systemdBoot" = false; # needed to use i3 in place of KWin
2024-10-16 19:22:16 +02:00
};
2024-06-25 12:11:51 +02:00
};
home.packages = [
extra.rc2nix
];
}