nixos-config/configs/sterni/packages.nix

14 lines
244 B
Nix
Raw Normal View History

2020-03-03 03:50:14 +01:00
{ config, lib, pkgs, ... }:
let unstable = import <nixpkgs-unstable> { };
in {
2019-10-24 02:20:38 +02:00
2020-01-20 07:26:42 +01:00
environment.systemPackages = with pkgs; [
bitwig-studio
2020-03-03 03:50:14 +01:00
#unstable.sonic-visualiser
2020-01-20 07:26:42 +01:00
sononym-crawler
darktable
2020-03-03 11:57:31 +01:00
haskellPackages.mahlzeit
2020-01-20 07:26:42 +01:00
];
2019-10-24 02:20:38 +02:00
}