9809e1575b
(cherry picked from commit 56c283e5c8dfd4d8d5daa15dfa3896beef2ac012)
12 lines
226 B
Nix
12 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;
|
|
};
|
|
}
|