From d98aff401fab4fb21e69b3160c6ec91d088c4a03 Mon Sep 17 00:00:00 2001 From: Kabbone Date: Sat, 17 Dec 2022 20:07:06 +0100 Subject: [PATCH] flake: add agenix --- flake.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 4443266..06666e5 100644 --- a/flake.nix +++ b/flake.nix @@ -12,7 +12,7 @@ inputs = # All flake references used to build my NixOS setup. These are dependencies. { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; # Nix Packages - nixpkgs-stable.url = "github:NixOS/nIxpkgs/nixos-22.05"; + nixpkgs-stable.url = "github:NixOS/nIxpkgs/nixos-22.11"; nixos-hardware.url = "github:NixOS/nixos-hardware/master"; home-manager = { # User Package Management @@ -28,9 +28,14 @@ url = "github:vaxerski/Hyprland"; inputs.nixpkgs.follows = "nixpkgs"; }; + + agenix = { + url = "github:ryantm/agenix"; + inputs.nixpkgs.follows = "nixpkgs-stable"; + }; }; - outputs = inputs @ { self, nixpkgs, nixpkgs-stable, nixos-hardware, home-manager, nur, hyprland, ... }: # Function that tells my flake which to use and what do what to do with the dependencies. + outputs = inputs @ { self, nixpkgs, nixpkgs-stable, nixos-hardware, home-manager, nur, hyprland, agenix, ... }: # Function that tells my flake which to use and what do what to do with the dependencies. let # Variables that can be used in the config files user = "kabbone"; location = "$HOME/.setup";