refactor(nix): Mix stable and unstable packages
Also replace inkscape with brew cask inkscape on macOS
This commit is contained in:
parent
90c0934bf2
commit
26c9cfbaed
13 changed files with 133 additions and 72 deletions
|
@ -1,9 +1,17 @@
|
|||
system: nixpkgs: extraOverlays:
|
||||
{ arch, stable, unstable, extraOverlays ? [] }:
|
||||
|
||||
{
|
||||
system = system;
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
system = arch;
|
||||
pkgs = import stable {
|
||||
system = arch;
|
||||
overlays =
|
||||
[
|
||||
(import ../overlays/python.nix)
|
||||
] ++ extraOverlays;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
pkgs-unstable = import unstable {
|
||||
system = arch;
|
||||
overlays =
|
||||
[
|
||||
(import ../overlays/python.nix)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue