dotfiles/modules/kde.sys.nix

29 lines
838 B
Nix
Raw Permalink Normal View History

2022-12-27 04:22:07 +00:00
{ pkgs
2023-01-12 17:50:46 +00:00
, 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;
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
];
};
# disables KDE's setting of askpassword
programs.ssh.askPassword = "";
programs.ssh.enableAskPassword = false;
}