13 lines
163 B
Nix
13 lines
163 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
nixpkgs.config.firefox = {
|
||
|
enableAdobeFlash = true;
|
||
|
};
|
||
|
|
||
|
krebs.per-user.makefu.packages = with pkgs; [
|
||
|
kodi
|
||
|
streamripper
|
||
|
];
|
||
|
}
|