mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
nixos/services.xserver.desktopManager.lumina: remove with lib;
This commit is contained in:
parent
3ba85539d7
commit
93da453c9e
1 changed files with 4 additions and 7 deletions
|
|
@ -4,9 +4,6 @@
|
|||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
|
||||
xcfg = config.services.xserver;
|
||||
|
|
@ -16,20 +13,20 @@ in
|
|||
|
||||
{
|
||||
meta = {
|
||||
maintainers = teams.lumina.members;
|
||||
maintainers = lib.teams.lumina.members;
|
||||
};
|
||||
|
||||
options = {
|
||||
|
||||
services.xserver.desktopManager.lumina.enable = mkOption {
|
||||
type = types.bool;
|
||||
services.xserver.desktopManager.lumina.enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
description = "Enable the Lumina desktop manager";
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
config = lib.mkIf cfg.enable {
|
||||
|
||||
services.displayManager.sessionPackages = [
|
||||
pkgs.lumina.lumina
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue