marleyos/modules/nixos/shell/ly.nix
2025-05-25 19:42:48 -07:00

15 lines
237 B
Nix

{
lib,
config,
...
}: let
cfg = config.marleyos.shell.ly;
in {
options.marleyos.shell.ly.enable = lib.mkEnableOption "ly";
config = lib.mkIf cfg.enable {
services.displayManager.ly = {
enable = true;
};
};
}