Configure nix-shell to allow unfree packages

This commit is contained in:
Charlotte Van Petegem 2020-06-27 11:18:07 +02:00
parent 88be6bf8db
commit 545b4c897c
2 changed files with 3 additions and 1 deletions

View file

@ -20,6 +20,7 @@
};
home-manager.users.charlotte = { ... }: {
nixpkgs.config.allowUnfree = true;
nixpkgs.config = import ./nix-store/config.nix;
xdg.configFile."nixpkgs/config.nix".source = ./nix-store/config.nix;
};
}

View file

@ -0,0 +1 @@
{ allowUnfree = true; }