blob: 36446f9f95e1799a685dc0b4981b9782d4d409ca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ config, lib, options, ... }:
{
imports = [
./hyprland.nix
];
options.desktops.enable = lib.mkOption {
description = "Which desktop setup to enable";
default = null;
type = with lib.types; nullOr (enum [ ]);
};
}
|