diff options
author | Soispha <soispha@vhack.eu> | 2023-06-25 20:19:41 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-06-25 20:19:41 +0200 |
commit | a8ffaea023ca69605c189e402dd8bac078178c16 (patch) | |
tree | eb862b288c18d6685e3b869fad5078864e7536e5 | |
parent | Fix(system/services/git-sync): Purge assertion, as we're always on linux (diff) | |
download | nixos-server-a8ffaea023ca69605c189e402dd8bac078178c16.tar.gz nixos-server-a8ffaea023ca69605c189e402dd8bac078178c16.zip |
Fix(system/services/git-sync): Switch to str to avoid impurity
-rw-r--r-- | system/services/git-sync/default.nix | 2 | ||||
-rw-r--r-- | system/services/nginx/hosts.nix | bin | 672 -> 676 bytes |
2 files changed, 1 insertions, 1 deletions
diff --git a/system/services/git-sync/default.nix b/system/services/git-sync/default.nix index c1b34ba..fce0819 100644 --- a/system/services/git-sync/default.nix +++ b/system/services/git-sync/default.nix @@ -45,7 +45,7 @@ https://github.com/nix-community/home-manager/blob/9ba7b3990eb1f4782ea3f5fe7ac4f }; path = lib.mkOption { - type = lib.types.path; + type = lib.types.str; description = "The path at which to sync the repository"; }; diff --git a/system/services/nginx/hosts.nix b/system/services/nginx/hosts.nix index 0a5d51d..0dddb16 100644 --- a/system/services/nginx/hosts.nix +++ b/system/services/nginx/hosts.nix Binary files differ |