Include agenix module and package directly
All checks were successful
CI / build:cross (pull_request) Successful in 6s
CI / build:all (pull_request) Successful in 17s

Avoids adding an extra flake input only to fetch a single module and
package.
This commit is contained in:
2025-10-13 13:51:40 +02:00
parent 1fba0a14a8
commit 9a7e600e7b
18 changed files with 732 additions and 91 deletions

View File

@@ -1,9 +1,8 @@
{ agenix, ... }:
{ pkgs, ... }:
{
imports = [ agenix.nixosModules.default ];
imports = [ ../../module/agenix.nix ];
environment.systemPackages = [
agenix.packages.x86_64-linux.default
];
# Add agenix to system packages
environment.systemPackages = [ pkgs.agenix ];
}