nixos-config/configs/workout/packages.nix

20 lines
404 B
Nix
Raw Normal View History

2019-10-24 02:20:38 +02:00
{ config, pkgs, ... }:
2019-12-20 05:54:26 +01:00
let unstable = import <nixpkgs-unstable> { };
2019-10-24 02:20:38 +02:00
in {
nixpkgs.config.packageOverrides = pkgs: {
2019-12-20 05:54:26 +01:00
nur = import (builtins.fetchTarball
"https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs;
};
2019-10-24 02:20:38 +02:00
};
2019-12-20 05:54:26 +01:00
environment.systemPackages = with pkgs;
[
bitwig-studio
#unstable.pypi2nix
#nur.repos.mic92.nixos-shell
];
2019-10-24 02:20:38 +02:00
}