Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
26 lines
533 B
Nix
26 lines
533 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.xserver.windowManager.ragnarwm;
|
|
in
|
|
{
|
|
###### interface
|
|
|
|
options = {
|
|
services.xserver.windowManager.ragnarwm = {
|
|
enable = mkEnableOption "ragnarwm";
|
|
package = mkPackageOption pkgs "ragnarwm" { };
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
services.displayManager.sessionPackages = [ cfg.package ];
|
|
environment.systemPackages = [ cfg.package ];
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [ sigmanificient ];
|
|
}
|