0a37316d6c
This commit replaces a lot of usages of `mkOption` with the package type, to be `mkPackageOption`, in order to reduce the amount of code.
26 lines
553 B
Nix
26 lines
553 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.xserver.windowManager.ragnarwm;
|
|
in
|
|
{
|
|
###### interface
|
|
|
|
options = {
|
|
services.xserver.windowManager.ragnarwm = {
|
|
enable = mkEnableOption (lib.mdDoc "ragnarwm");
|
|
package = mkPackageOption pkgs "ragnarwm" { };
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
services.xserver.displayManager.sessionPackages = [ cfg.package ];
|
|
environment.systemPackages = [ cfg.package ];
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [ sigmanificient ];
|
|
}
|