added plasma

This commit is contained in:
2024-08-13 22:36:15 +09:00
parent 0940cc8427
commit 70bb31c3f5
5 changed files with 15 additions and 23 deletions

11
system/wm/plasma.nix Normal file
View File

@@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
imports = [
./dbus.nix
];
services.displayManager.plasma6.enable = true;
environment.plasma6.excludePackages = with pkgs.kdePackages; [
plasma-browser-integration
];
}