From e9207b05011b7cf46face625a4f69c946688902b Mon Sep 17 00:00:00 2001 From: Lily Foster Date: Mon, 3 Jul 2023 08:41:38 -0400 Subject: nixos/*: unhide remaining systemd stage-1 options These options were missed in NixOS/nixpkgs#226237, but they all were specifically added for systemd stage-1. --- nixos/modules/config/users-groups.nix | 5 ----- 1 file changed, 5 deletions(-) (limited to 'nixos/modules/config') diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix index 4640a0f3d6bef..4c9e286ea5fd4 100644 --- a/nixos/modules/config/users-groups.nix +++ b/nixos/modules/config/users-groups.nix @@ -539,14 +539,12 @@ in { # systemd initrd boot.initrd.systemd.users = mkOption { - visible = false; description = '' Users to include in initrd. ''; default = {}; type = types.attrsOf (types.submodule ({ name, ... }: { options.uid = mkOption { - visible = false; type = types.int; description = '' ID of the user in initrd. @@ -555,7 +553,6 @@ in { default = cfg.users.${name}.uid; }; options.group = mkOption { - visible = false; type = types.singleLineStr; description = '' Group the user belongs to in initrd. @@ -567,14 +564,12 @@ in { }; boot.initrd.systemd.groups = mkOption { - visible = false; description = '' Groups to include in initrd. ''; default = {}; type = types.attrsOf (types.submodule ({ name, ... }: { options.gid = mkOption { - visible = false; type = types.int; description = '' ID of the group in initrd. -- cgit 1.4.1