about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--flake.nix1
-rw-r--r--nix/modules/default.nix2
2 files changed, 1 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 82d2bd0..7229523 100644
--- a/flake.nix
+++ b/flake.nix
@@ -26,7 +26,6 @@
       nixosModules = {
         default = import ./nix/modules self;
       };
-      overlays.default = import ./nix/overlays;
     } // (flake-utils.lib.eachDefaultSystem
       (system:
         let
diff --git a/nix/modules/default.nix b/nix/modules/default.nix
index f6f8fbf..6f8722b 100644
--- a/nix/modules/default.nix
+++ b/nix/modules/default.nix
@@ -110,7 +110,7 @@ in
                 };
 
                 environment = mkOption {
-                  type = with types; either "production" "development";
+                  type = types.str;
                   description = "Environment name for logging";
                   default = "production";
                 };