More flake fixes

This commit is contained in:
Geoffrey Frogeye 2024-01-07 12:54:43 +01:00
parent 6d98d85642
commit 597b50ebef
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
13 changed files with 133 additions and 27 deletions

View file

@ -5,9 +5,9 @@
gaming = lib.mkEnableOption "Games";
userNix = lib.mkEnableOption "Nix is \"installed\" in ~/.nix";
polarity = lib.mkOption {
default = "dynamic";
default = "light";
description = "Whether to use light theme or dark theme.";
type = lib.types.enum [ "dynamic" "light" "dark" ];
type = lib.types.enum [ "light" "dark" ];
};
desktop = {
xorg = lib.mkEnableOption "Enable X11 support";