Kde: configure plasma with plasma-manager

This commit is contained in:
Toast 2023-10-22 03:55:18 +02:00
parent 605e3bd630
commit 33d16b58f1
3 changed files with 40 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, lib, ... }:
{ config, pkgs, lib, flakeSelf, ... }:
let
themeName = "Breeze";
@ -129,4 +129,11 @@ in
*/
environment.systemPackages = [ breezeTint lookAndFeel plasmaDefaults ];
# Plasma configs should be on all users
home-manager.sharedModules = [{
imports = [ flakeSelf.inputs.plasma-manager.homeManagerModules.plasma-manager ];
programs.plasma = {
enable = true;
};
}];
}