Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
oluceps committed Sep 16, 2024
1 parent d39c62c commit 6333a3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ let
options.systemd ? sysusers && (config.systemd.sysusers.enable || config.services.userborn.enable)
) "`systemd.sysusers` or `services.userborn` must be enabled.";

storage_dir = self + "/" + cfg.settings.storageDirRelative;
storageExist = assertMsg (builtins.pathExists (storage_dir)) "${storage_dir} doesn't exist plz create and add to git first (maybe need a placeholder for git to recognize it)";
storagePath = self + "/" + cfg.settings.storageDirRelative;
storageExist = assertMsg (builtins.pathExists (storagePath)) "${storagePath} doesn't exist plz create and add to git first (maybe need a placeholder for git to recognize it)";

settingsType = types.submodule (submod: {
options = {
Expand Down

0 comments on commit 6333a3c

Please sign in to comment.