diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-01 11:06:58 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-01 11:06:58 +0530 |
commit | b3a125624d79432d74f6aba09429af92565d0def (patch) | |
tree | 0f4dc7384e94f80771e312e6c6ec755b91cfc426 | |
parent | 7e4db7e2f9ab1716780d77a6ed6620d7dbd36ee0 (diff) |
flake: no need to allow unfree packages
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ outputs = { self, nixpkgs, ... }: let - pkgs = import nixpkgs { system = "x86_64-linux"; config.allowUnfree = true; }; + pkgs = import nixpkgs { system = "x86_64-linux"; }; in { devShells.x86_64-linux.default = pkgs.mkShell { buildInputs = with pkgs; [ |