aboutsummaryrefslogtreecommitdiff
path: root/.config/nixpkgs
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2022-02-22 05:18:55 -0500
committertdro <tdro@users.noreply.github.com>2022-02-22 05:21:05 -0500
commit576fadaebf8136186df68dd92916a918864d29f4 (patch)
tree04d57e7c4a0806c58d08378f5dbecea4f9f29dd2 /.config/nixpkgs
parenta4f45f2571b7fadfce75552eab64e3e9fc868718 (diff)
downloaddotfiles-576fadaebf8136186df68dd92916a918864d29f4.tar.gz
dotfiles-576fadaebf8136186df68dd92916a918864d29f4.tar.bz2
dotfiles-576fadaebf8136186df68dd92916a918864d29f4.zip
.config/nixpkgs: Allow everything
Already sandboxing, just allow everything. Restore productivity.
Diffstat (limited to '.config/nixpkgs')
-rw-r--r--.config/nixpkgs/config.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/.config/nixpkgs/config.nix b/.config/nixpkgs/config.nix
index 3675cfa..9d70cb7 100644
--- a/.config/nixpkgs/config.nix
+++ b/.config/nixpkgs/config.nix
@@ -1,6 +1,6 @@
let
- pkgs = import <nixpkgs> {};
+ pkgs = import <nixpkgs> { };
stable = import (builtins.fetchTarball {
url = "https://releases.nixos.org/nixos/21.11/nixos-21.11.336020.2128d0aa28e/nixexprs.tar.xz";
@@ -13,7 +13,10 @@ let
in
{
+ allowBroken = true;
allowUnfree = true;
+ allowUnsupportedSystem = true;
+ allowInsecurePredicate = pkgs: true;
packageOverrides = pkgs: with stable; {