summary refs log tree commit diff
path: root/nixos/modules/config
diff options
context:
space:
mode:
authorWill Fancher <elvishjerricco@gmail.com>2023-10-29 13:22:47 -0400
committerGitHub <noreply@github.com>2023-10-29 13:22:47 -0400
commit5cea7ee4527d3bbe2ba9675f9fb24c69d22c044d (patch)
tree9a91e2ca468a3119997c11b581f5919aaa48177a /nixos/modules/config
parentb9d8a730e36e688df855c40c39498b658b46955f (diff)
parent22325ce016eeb59be10ce964e106549ac95c1896 (diff)
downloadnixpkgs-5cea7ee4527d3bbe2ba9675f9fb24c69d22c044d.tar
nixpkgs-5cea7ee4527d3bbe2ba9675f9fb24c69d22c044d.tar.gz
nixpkgs-5cea7ee4527d3bbe2ba9675f9fb24c69d22c044d.tar.bz2
nixpkgs-5cea7ee4527d3bbe2ba9675f9fb24c69d22c044d.tar.lz
nixpkgs-5cea7ee4527d3bbe2ba9675f9fb24c69d22c044d.tar.xz
nixpkgs-5cea7ee4527d3bbe2ba9675f9fb24c69d22c044d.tar.zst
nixpkgs-5cea7ee4527d3bbe2ba9675f9fb24c69d22c044d.zip
Merge pull request #262583 from ElvishJerricco/systemd-stage-1-shells
systemd-stage-1: Support for user shells
Diffstat (limited to 'nixos/modules/config')
-rw-r--r--nixos/modules/config/users-groups.nix17
1 files changed, 14 insertions, 3 deletions
diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix
index 97268a8d83e..b4251214876 100644
--- a/nixos/modules/config/users-groups.nix
+++ b/nixos/modules/config/users-groups.nix
@@ -606,6 +606,14 @@ in {
           defaultText = literalExpression "config.users.users.\${name}.group";
           default = cfg.users.${name}.group;
         };
+        options.shell = mkOption {
+          type = types.passwdEntry types.path;
+          description = ''
+            The path to the user's shell in initrd.
+          '';
+          default = "${pkgs.shadow}/bin/nologin";
+          defaultText = literalExpression "\${pkgs.shadow}/bin/nologin";
+        };
       }));
     };
 
@@ -750,17 +758,20 @@ in {
     boot.initrd.systemd = lib.mkIf config.boot.initrd.systemd.enable {
       contents = {
         "/etc/passwd".text = ''
-          ${lib.concatStringsSep "\n" (lib.mapAttrsToList (n: { uid, group }: let
+          ${lib.concatStringsSep "\n" (lib.mapAttrsToList (n: { uid, group, shell }: let
             g = config.boot.initrd.systemd.groups.${group};
-          in "${n}:x:${toString uid}:${toString g.gid}::/var/empty:") config.boot.initrd.systemd.users)}
+          in "${n}:x:${toString uid}:${toString g.gid}::/var/empty:${shell}") config.boot.initrd.systemd.users)}
         '';
         "/etc/group".text = ''
           ${lib.concatStringsSep "\n" (lib.mapAttrsToList (n: { gid }: "${n}:x:${toString gid}:") config.boot.initrd.systemd.groups)}
         '';
+        "/etc/shells".text = lib.concatStringsSep "\n" (lib.unique (lib.mapAttrsToList (_: u: u.shell) config.boot.initrd.systemd.users)) + "\n";
       };
 
+      storePaths = [ "${pkgs.shadow}/bin/nologin" ];
+
       users = {
-        root = {};
+        root = { shell = lib.mkDefault "/bin/bash"; };
         nobody = {};
       };