diff --git a/nix/module.nix b/nix/module.nix index 3b0ae26..48d9fb4 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -2,7 +2,7 @@ let inherit (lib) mkEnableOption mkOption mkIf; - inherit (lib.types) port string bool; + inherit (lib.types) port str bool; package = pkgs.callPackage ./package.nix { }; @@ -19,7 +19,7 @@ in }; username = mkOption { - type = string; + type = str; default = "user"; description = "The user to run sakaya under."; };