Skip to content

Instantly share code, notes, and snippets.

@kamilchm
Last active July 5, 2017 11:50
Show Gist options
  • Save kamilchm/8733e5cf69ec76a75430a0792bbd1bf4 to your computer and use it in GitHub Desktop.
Save kamilchm/8733e5cf69ec76a75430a0792bbd1bf4 to your computer and use it in GitHub Desktop.
minimal config.nix
{
allowUnfree = true;
# if you use firefox, coinfigure it here
firefox = {
enableGoogleTalkPlugin = true;
enableAdobeFlash = true;
enableBluejeans = true;
};
# if you use chromium, coinfigure it here
chromium = {
enablePepperFlash = true;
enablePepperPDF = true;
};
packageOverrides = pkgs_: with pkgs_; {
all = with pkgs; buildEnv {
name = "all";
paths = [
firefoxWrapper #install firefox
chromium #install chromium
# add more here, eg. git
git
];
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment