mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 02:13:55 -05:00
Aly Raffauf
c70d7e116d
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / adjustor-build (push) Waiting to run
nix-build / clean-install-build (push) Waiting to run
nix-build / hhd-ui-build (push) Waiting to run
nix-build / rofi-bluetooth-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / pacifidlog-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
22 lines
348 B
Nix
22 lines
348 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.desktop.kde.enable {
|
|
environment.plasma6.excludePackages = lib.attrsets.attrValues {
|
|
inherit
|
|
(pkgs.kdePackages)
|
|
elisa
|
|
gwenview
|
|
krdp
|
|
okular
|
|
oxygen
|
|
;
|
|
};
|
|
|
|
services.desktopManager.plasma6.enable = true;
|
|
};
|
|
}
|