Skip to content

Commit

Permalink
nix: replace string with str
Browse files Browse the repository at this point in the history
  • Loading branch information
donovanglover committed Oct 22, 2024
1 parent bf1d569 commit 64921c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nix/module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };

Expand All @@ -19,7 +19,7 @@ in
};

username = mkOption {
type = string;
type = str;
default = "user";
description = "The user to run sakaya under.";
};
Expand Down

0 comments on commit 64921c4

Please sign in to comment.