From 73ae1787d16df836ecf545c842dce4c35eeab17a Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Tue, 11 Nov 2025 16:17:49 -0600 Subject: [PATCH] Update flake.nix to include self in outputs for improved configuration management --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 76cad10..abb6a81 100644 --- a/flake.nix +++ b/flake.nix @@ -4,7 +4,7 @@ inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; outputs = - { nixpkgs }: + { nixpkgs, self }: let system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; };