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

Avoids adding an extra flake input only to fetch a single module and
package.

Reviewed-by: Aleix Boné <abonerib@bsc.es>
Tested-by: Rodrigo Arias Mallo <rodrigo.arias@bsc.es>
This commit is contained in:
2025-10-13 13:51:40 +02:00
parent 1fba0a14a8
commit e3e07cada7
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 ];
}