about summary refs log tree commit diff
path: root/devhell/pkgs/pkgs_skunkworks.nix
blob: 296dbca10a84081b09cf1adaa0bec8a27752e6f5 (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
{ config, pkgs, lib, ... }:

{
  imports = [ ./pkgs_common.nix ];

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

    mpv = {
      bs2bSupport = true;
    };
  };

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