From e44460ca3c3901554f6bff0a5418e1f5f08ecd5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Tue, 13 Jun 2023 10:53:57 +0200 Subject: [PATCH] feat: good bye channels --- configs/nix.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/configs/nix.nix b/configs/nix.nix index a8cad1f..9b7f76f 100644 --- a/configs/nix.nix +++ b/configs/nix.nix @@ -1,9 +1,14 @@ -{pkgs, ...}: { +{ + pkgs, + inputs, + ... +}: { nixpkgs = { config.allowUnfree = true; }; nix = { package = pkgs.nixFlakes; extraOptions = "experimental-features = nix-command flakes"; + nixPath = ["nixpkgs=${inputs.nixpkgs}"]; }; }