mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
9809e1575b
(cherry picked from commit 56c283e5c8
)
13 lines
226 B
Nix
13 lines
226 B
Nix
{ config, lib, ... }:
|
|
let
|
|
inherit (lib) stringAfter;
|
|
in {
|
|
|
|
imports = [ ./etc.nix ];
|
|
|
|
config = {
|
|
system.activationScripts.etc =
|
|
stringAfter [ "users" "groups" ] config.system.build.etcActivationCommands;
|
|
};
|
|
}
|