Test adding manual wants to nix

Closes #2104
This commit is contained in:
Jordan Dominion
2025-02-07 19:07:55 -05:00
parent 8d32652561
commit 4e7b982b1a
+9
View File
@@ -1,6 +1,7 @@
inputs@{
config,
lib,
systemdUtils,
nixpkgs,
pkgs,
writeShellScriptBin,
@@ -99,6 +100,14 @@ in
Environment file as defined in {manpage}`systemd.exec(5)`
'';
};
wants = lib.mkOption {
type = lib.types.listOf systemdUtils.lib.unitNameType;
default = [];
description = ''
Start the specified units when this unit is started.
'';
}
};
};