fix for new nix?

This commit is contained in:
Cyryl Płotnicki 2023-11-11 10:58:49 +00:00
parent c97aab68bf
commit 8573f02650
2 changed files with 6 additions and 2 deletions

View file

@ -96,6 +96,9 @@
inherit system;
config = {allowUnfree = true;};
};
nixpkgs-nixos-unstable = import nixpkgs-nixos-unstable {
inherit system;
};
nixpkgs-nixos-unstable-and-unfree = import nixpkgs-nixos-unstable {
inherit system;
config = {allowUnfree = true;};

View file

@ -3,6 +3,7 @@
pkgs,
discord,
inputs,
nixpkgs-nixos-unstable,
nixpkgs-nixos-stable-and-unfree,
nixpkgs-nixos-unstable-and-unfree,
...
@ -85,8 +86,8 @@
yubikey-personalization
yubikey-personalization-gui
])
++ (with pkgs.unstable; [gnucash kicad thunderbird])
++ (with nixpkgs-nixos-stable-and-unfree; [discord])
++ (with nixpkgs-nixos-unstable; [gnucash kicad thunderbird])
++ [nixpkgs-nixos-stable-and-unfree.discord]
++ (with nixpkgs-nixos-unstable-and-unfree; [hopper]);
};
}