dotfiles/modules/kde.sys.nix

31 lines
833 B
Nix
Raw Normal View History

2023-06-18 00:46:31 +00:00
{
pkgs,
my-lib,
...
}: {
2023-01-12 17:50:46 +00:00
environment.noXlibs = my-lib.mkForce false;
2022-12-27 04:22:07 +00:00
# TODO: wireless networking
# Enable the X11 windowing system.
services.xserver.enable = true;
# KDE & Plasma 5
services.xserver.displayManager.sddm.enable = true;
services.xserver.desktopManager.plasma5 = {
enable = true;
2023-06-18 00:46:31 +00:00
excludePackages = let
plasma5 = pkgs.libsForQt5;
in [
plasma5.elisa # audio viewer
plasma5.konsole # I use alacritty instaed
plasma5.plasma-browser-integration
plasma5.print-manager # will enable if I need
plasma5.khelpcenter # why not just write manpages instead :(
# plasma5.ksshaskpass # pls just put prompts on my dear terminal
];
2022-12-27 04:22:07 +00:00
};
# disables KDE's setting of askpassword
programs.ssh.askPassword = "";
programs.ssh.enableAskPassword = false;
}