nix-config/common/pc/kde.nix
Zuckerberg 588e94dcf4
All checks were successful
Check Flake / check-flake (push) Successful in 1m11s
Update to NixOS 24.05
2024-06-02 21:12:07 -06:00

22 lines
477 B
Nix

{ lib, config, pkgs, ... }:
let
cfg = config.de;
in
{
config = lib.mkIf cfg.enable {
services.displayManager.sddm.enable = true;
services.displayManager.sddm.wayland.enable = true;
services.desktopManager.plasma6.enable = true;
# kde apps
nixpkgs.config.firefox.enablePlasmaBrowserIntegration = true;
users.users.googlebot.packages = with pkgs; [
# akonadi
# kmail
# plasma5Packages.kmail-account-wizard
kate
];
};
}