From 254f2d2f57a4c719b7fc3cec16a0a84c4f2322a5 Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sun, 29 Oct 2023 22:05:50 +0000 Subject: [PATCH] Add nixos-generators --- flake.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 924a14e..ae6e5ce 100644 --- a/flake.nix +++ b/flake.nix @@ -3,6 +3,10 @@ inputs = { nixpkgs.url = "nixpkgs/nixos-23.05"; + nixos-generators = { + url = "github:nix-community/nixos-generators"; + inputs.nixpkgs.follows = "nixpkgs"; + }; home-manager = { url = "github:nix-community/home-manager/release-23.05"; inputs.nixpkgs.follows = "nixpkgs"; @@ -17,7 +21,7 @@ }; }; - outputs = inputs @ { self, nixpkgs, home-manager, ... }: + outputs = inputs @ { self, nixpkgs, nixos-generators, home-manager, ... }: let inherit (lib) attrValues; inherit (lib.my) mapModules mapModulesRec;