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 cdffbbb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion modules/kde/testbed.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
{
# 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)
services.desktopManager = {
plasma5.enable = true;
plasma6.enable = true;
};
}

0 comments on commit cdffbbb

Please sign in to comment.