fix allowUnfree for unstable packages
This commit is contained in:
parent
05b0940e14
commit
0b4382253f
1 changed files with 4 additions and 1 deletions
|
|
@ -4,7 +4,10 @@ let
|
||||||
in {
|
in {
|
||||||
den.aspects.dev.nixos = { pkgs, ... }:
|
den.aspects.dev.nixos = { pkgs, ... }:
|
||||||
let
|
let
|
||||||
pkgs-unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
pkgs-unstable = import inputs.nixpkgs-unstable {
|
||||||
|
system = pkgs.stdenv.hostPlatform.system;
|
||||||
|
config.allowUnfree = true;
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
environment.systemPackages = with pkgs-unstable; [
|
environment.systemPackages = with pkgs-unstable; [
|
||||||
# CLI utilities
|
# CLI utilities
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue