idk
This commit is contained in:
parent
da7459efbb
commit
cf260a566e
6 changed files with 2 additions and 2 deletions
|
|
@ -1,34 +0,0 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
options.device = {
|
||||
dm = {
|
||||
sddm = {
|
||||
enable = lib.mkEnableOption "sddm";
|
||||
theme = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "hyprland_kath";
|
||||
description = "astronaut theme name";
|
||||
};
|
||||
};
|
||||
|
||||
gdm.enable = lib.mkEnableOption "gdm";
|
||||
};
|
||||
|
||||
de = {
|
||||
kdePlasma.enable = lib.mkEnableOption "kde plasma";
|
||||
gnome.enable = lib.mkEnableOption "gnome";
|
||||
};
|
||||
|
||||
wm = {
|
||||
niri.enable = lib.mkEnableOption "niri";
|
||||
hyprland = {
|
||||
enable = lib.mkEnableOption "hyprland";
|
||||
monitors = lib.mkOption {
|
||||
type = lib.types.listOf lib.types.attrs;
|
||||
default = [];
|
||||
description = "Monitors settings";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in a new issue