Skip to content

Commit

Permalink
Adapt for Plasma 6
Browse files Browse the repository at this point in the history
Include Plasma 6 and new attribute names
  • Loading branch information
Kitt3120 committed May 22, 2024
1 parent e7543c5 commit b3a69e7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion modules/kde/testbed.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
{
# Old attribute names for backwards compatibility
services.xserver = {
enable = true;
desktopManager.plasma5.enable = true;
desktopManager = {
plasma5.enable = true;
plasma6.enable = true;
};
displayManager.sddm.enable = true;
};

# New attribute names since 3rd of 2024-03-12 (https://github.com/NixOS/nixpkgs/commit/b07cdeb1b34503576ec4aba981740466d19cb8e5)
# There is no Plasma 5 equivalent for this
services.desktopManager.plasma6.enable = true;
}

0 comments on commit b3a69e7

Please sign in to comment.