summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-06-11 00:34:33 +0200
committermakefu <github@syntax-fehler.de>2023-06-11 00:34:33 +0200
commitd04983183b567d131ac7d68215f88cc5d4272fc3 (patch)
tree369dfc2cda6dc105cca16057b1e467f0404aa568
parenta948f3ce0d57021114bd48ce0286fc0a8b84ec30 (diff)
flake: add nixpkgs to specialArgs
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 455bffd31..6b445df0d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -44,7 +44,7 @@
nixosConfigurations.x = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";
specialArgs = {
- inherit (inputs) nixos-hardware self stockholm;
+ inherit (inputs) nixos-hardware self stockholm nixpkgs;
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;