inspecting source code at nixpkgs, libForQt5 is horrible name for plasma5Package
parent
21bccdb664
commit
828d7ee2c1
|
@ -354,16 +354,20 @@
|
||||||
services.xserver.displayManager.sddm.enable = true;
|
services.xserver.displayManager.sddm.enable = true;
|
||||||
services.xserver.desktopManager.plasma5 = {
|
services.xserver.desktopManager.plasma5 = {
|
||||||
enable = true;
|
enable = true;
|
||||||
excludePackages = let qt = pkgs.libsForQt5; in [
|
excludePackages = let plasma5 = pkgs.libsForQt5; in [
|
||||||
qt.elisa # audio viewer
|
plasma5.elisa # audio viewer
|
||||||
qt.konsole # I use alacritty instaed
|
plasma5.konsole # I use alacritty instaed
|
||||||
qt.plasma-browser-integration
|
plasma5.plasma-browser-integration
|
||||||
qt.print-manager # will enable if I need
|
plasma5.print-manager # will enable if I need
|
||||||
qt.khelpcenter # why not just write manpages instead :(
|
plasma5.khelpcenter # why not just write manpages instead :(
|
||||||
qt.ksshaskpass # pls just put prompts on my dear terminal
|
# plasma5.ksshaskpass # pls just put prompts on my dear terminal
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# disables KDE's setting of askpassword
|
||||||
|
programs.ssh.askPassword = "";
|
||||||
|
programs.ssh.enableAskPassword = false;
|
||||||
|
|
||||||
time.timeZone = "America/Phoenix";
|
time.timeZone = "America/Phoenix";
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
services.xserver.layout = "us";
|
services.xserver.layout = "us";
|
||||||
|
|
Loading…
Reference in New Issue