combine config

This commit is contained in:
zuckerberg
2021-02-22 23:57:05 -05:00
parent 7f0b25c0b6
commit 36b6081783
23 changed files with 18 additions and 106 deletions

16
common/pc/kde.nix Normal file
View File

@@ -0,0 +1,16 @@
{ config, pkgs, ... }:
{
# kde plasma
services.xserver = {
enable = true;
desktopManager.plasma5.enable = true;
displayManager.sddm.enable = true;
};
# kde apps
nixpkgs.config.firefox.enablePlasmaBrowserIntegration = true;
users.users.googlebot.packages = with pkgs; [
akonadi kmail plasma5Packages.kmail-account-wizard
];
}