Compare commits
No commits in common. "828d7ee2c18b3c47bc3c545a06b7c5a3aaed6100" and "8bd3eb914e46d71ce06acb782ef7ed89cfb1fda8" have entirely different histories.
828d7ee2c1
...
8bd3eb914e
|
@ -354,20 +354,15 @@
|
||||||
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 plasma5 = pkgs.libsForQt5; in [
|
excludePackages = let qt = pkgs.libsForQt5; in [
|
||||||
plasma5.elisa # audio viewer
|
qt.elisa # audio viewer
|
||||||
plasma5.konsole # I use alacritty instaed
|
qt.konsole # I use alacritty instaed
|
||||||
plasma5.plasma-browser-integration
|
qt.plasma-browser-integration
|
||||||
plasma5.print-manager # will enable if I need
|
qt.print-manager # will enable if I need
|
||||||
plasma5.khelpcenter # why not just write manpages instead :(
|
qt.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;
|
|
||||||
|
|
||||||
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