about summary refs log tree commit diff
path: root/pkgs/pkgs_skunkworks.nix
blob: b63b67254b760272c68543792342db69accc10f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ config, pkgs, lib, ... }:

{
  imports = [ ./pkgs_common.nix ];

  nixpkgs.config = {
    chromium = {
      enablePepperFlash = true;
    };

    mpv = {
      bs2bSupport = true;
    };
  };

  environment.systemPackages = with pkgs; [
    abook
    beets
    canto-curses
    cli-visualizer
    go15Packages.ipfs
    handbrake
    hplip
    #mkvtoolnix
    mutt-with-sidebar
    nzbget
    scummvm
    slrn
    twister
    urlview
  ];
}