niksos/hosts/common/core/agenix.nix

15 lines
263 B
Nix
Raw Normal View History

2024-10-02 16:49:35 +02:00
{
config,
inputs,
pkgs,
...
}: let
inherit (config.poz.other.system) username;
in {
imports = [ inputs.agenix.nixosModules.default ];
users.users.${username}.packages = [
inputs.agenix.packages.${pkgs.system}.default
];
}