Personal Nix setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add agenix package to flake.nix

+6 -1
+6 -1
flake.nix
··· 67 67 }; 68 68 }; 69 69 70 - outputs = { nixos-hardware, apple-silicon, ...} @ inputs: let 70 + outputs = { apple-silicon, ...} @ inputs: let 71 71 inherit (import ./lib/system.nix inputs) mkSystem; 72 + eachSystem = inputs.nixpkgs.lib.genAttrs ["aarch64-darwin" "aarch64-linux" "x86_64-linux"]; 72 73 overlays = [ 73 74 inputs.nvim-plugins.overlays.default 74 75 (self: super: { ··· 110 111 system = "aarch64-linux"; 111 112 hostname = "ramune"; 112 113 }; 114 + 115 + packages = eachSystem (system: { 116 + inherit (inputs.agenix.packages.${system}) agenix; 117 + }); 113 118 }; 114 119 }