1
1
mirror of https://github.com/ryantm/agenix.git synced 2024-08-16 17:40:36 +03:00

Compare commits

...

3 Commits

Author SHA1 Message Date
nicoo
de4f1e621d
Merge e5d4435cf1 into 07479c2e73 2024-05-08 01:22:01 +02:00
Jörg Thalheim
07479c2e73
update link to nixos wiki (#258) 2024-05-07 10:12:37 -07:00
nicoo
e5d4435cf1 age-home: Order agenix.service after basic.target
Closes #219
2023-11-15 18:26:54 +00:00
2 changed files with 2 additions and 1 deletions

View File

@ -205,7 +205,7 @@ You can run the CLI tool ad-hoc without installing it:
nix run github:ryantm/agenix -- --help
```
But you can also add it permanently into a [NixOS module](https://nixos.wiki/wiki/NixOS_modules)
But you can also add it permanently into a [NixOS module](https://wiki.nixos.org/wiki/NixOS_modules)
(replace system "x86_64-linux" with your system):
```nix

View File

@ -211,6 +211,7 @@ in {
systemd.user.services.agenix = lib.mkIf pkgs.stdenv.hostPlatform.isLinux {
Unit = {
Description = "agenix activation";
After = "basic.target" # “basic boot-up,” includes impermanence's bind mounts
};
Service = {
Type = "oneshot";