config-manager: Remove system option in favor of pkgs.system

This commit is contained in:
Alexander Heldt
2023-11-01 16:05:00 +01:00
parent 89cd417d12
commit 39fb7e868f
7 changed files with 6 additions and 26 deletions

View File

@@ -1,13 +1,10 @@
{ inputs, config, ... }:
let
system = config.config-manager.system;
in
{ inputs, pkgs, ... }:
{
age = {
identityPaths = [ "/etc/ssh/sombrero" ];
};
environment.systemPackages = [
inputs.agenix.packages."${system}".default
inputs.agenix.packages."${pkgs.system}".default
];
}