regenerated age keys to use leylas credentials

This commit is contained in:
Leyla Becker 2024-04-02 20:33:03 -05:00
parent 6bafea9b7b
commit 9348d4094c
5 changed files with 24 additions and 19 deletions

View file

@ -14,10 +14,12 @@
outputs = { self, nixpkgs, ... }@inputs:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
forEachSystem = nixpkgs.lib.genAttrs [ "x86_64-linux" ];
forEachPkgs = lambda: forEachSystem (system: lambda nixpkgs.legacyPackages.${system});
in
{
packages = forEachPkgs (pkgs: import ./pkgs { inherit pkgs; });
nixosConfigurations = {
horizon = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};