Added Enum for graphical protocol.

This commit is contained in:
James Patrick 2022-03-23 22:41:33 -04:00
parent ababe89d99
commit 3922c11801
1 changed files with 5 additions and 0 deletions

View File

@ -5,5 +5,10 @@
description = "Does this actually need X/Wayland";
};
options.this.graphical.protocol = mkOption {
type = types.enum [ "X11" "Wayland" ];
default = null;
};
imports = [ ./applications ./lang ./system ];
}