regenerated age keys to use leylas credentials

This commit is contained in:
Leyla Becker 2024-04-02 20:33:03 -05:00
parent d6ca7d5a60
commit a18d2d373a
4 changed files with 13 additions and 8 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;};