diff --git a/nixosModules/clanCore/vars/interface.nix b/nixosModules/clanCore/vars/interface.nix index 7adb1fb07..2ed7b9b5e 100644 --- a/nixosModules/clanCore/vars/interface.nix +++ b/nixosModules/clanCore/vars/interface.nix @@ -290,9 +290,11 @@ in }; owner = mkOption { description = "The user name or id that will own the file."; + type = str; default = "root"; }; group = mkOption { + type = str; description = "The group name or id that will own the file."; default = if _class == "darwin" then "wheel" else "root"; defaultText = lib.literalExpression ''if _class == "darwin" then "wheel" else "root"'';