aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-12-04 10:20:23 -0500
committerRaghuram Subramani <raghus2247@gmail.com>2025-12-04 10:20:23 -0500
commitc39cc319394993299874c135564d7675a2c5da45 (patch)
tree3763055cb549342f09eccdd0dbb8e11331021f01 /flake.nix
parent62cbce9e51781c93822e2ad4eb9a4a54e996e432 (diff)
discount: fix nix buildHEADmain
Nix doesn't allow network requests while building, so the source for discount needs to be fetched before the build is initiated.
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 259cd15..0542c2c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -5,7 +5,7 @@
};
outputs = { self, nixpkgs, ... }:
- let
+ let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in {
devShells.x86_64-linux.default = pkgs.mkShell {