nixos-config/configs/workout/packages.nix

34 lines
628 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 {
2020-05-21 01:37:01 +02:00
# overlay included
nixpkgs.overlays = [ (import <mozilla-overlay/rust-overlay.nix>) ];
2019-10-24 02:20:38 +02:00
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
2020-05-21 01:37:01 +02:00
sononym-crawler
# rust development environment
rustup
jetbrains.clion
# python
python3Full
2019-12-20 05:54:26 +01:00
#unstable.pypi2nix
2020-05-21 01:37:01 +02:00
2019-12-20 05:54:26 +01:00
#nur.repos.mic92.nixos-shell
2020-05-21 01:37:01 +02:00
2019-12-20 05:54:26 +01:00
];
2019-10-24 02:20:38 +02:00
}