Skip to content

Commit

Permalink
fix: don't use deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Sep 7, 2024
1 parent 7193a82 commit 32636d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/satisfactory.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ in
};

user = lib.mkOption {
type = lib.types.string;
type = lib.types.str;
default = "satisfactory";
description = "User to run the server as.";
};

listenAddress = lib.mkOption {
type = lib.types.string;
type = lib.types.str;
default = "0.0.0.0";
description = ''
Bind the server process to a specific IP address rather than all available interfaces.
Expand Down

0 comments on commit 32636d9

Please sign in to comment.