Merge pull request 'clanModules/mumble: remove default user' (#2175) from kenji/clan-core:kenji-clanModules/mumble/remove-default-user into main
This commit is contained in:
@@ -6,6 +6,9 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
self.clanModules.mumble
|
self.clanModules.mumble
|
||||||
|
{
|
||||||
|
clan.services.mumble.user = "alice";
|
||||||
|
}
|
||||||
self.nixosModules.clanCore
|
self.nixosModules.clanCore
|
||||||
(self.inputs.nixpkgs + "/nixos/tests/common/x11.nix")
|
(self.inputs.nixpkgs + "/nixos/tests/common/x11.nix")
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -28,8 +28,9 @@ in
|
|||||||
{
|
{
|
||||||
options.clan.services.mumble = {
|
options.clan.services.mumble = {
|
||||||
user = lib.mkOption {
|
user = lib.mkOption {
|
||||||
type = lib.types.str;
|
type = lib.types.nullOr lib.types.str;
|
||||||
default = "alice";
|
default = null;
|
||||||
|
example = "alice";
|
||||||
description = "The user mumble should be set up for.";
|
description = "The user mumble should be set up for.";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user