jungle/m/common/base/agenix.nix
Rodrigo Arias Mallo 9a7e600e7b
All checks were successful
CI / build:cross (pull_request) Successful in 6s
CI / build:all (pull_request) Successful in 17s
Include agenix module and package directly
Avoids adding an extra flake input only to fetch a single module and
package.
2025-10-13 15:07:37 +02:00

9 lines
144 B
Nix

{ pkgs, ... }:
{
imports = [ ../../module/agenix.nix ];
# Add agenix to system packages
environment.systemPackages = [ pkgs.agenix ];
}