Last active
July 5, 2017 11:50
-
-
Save kamilchm/8733e5cf69ec76a75430a0792bbd1bf4 to your computer and use it in GitHub Desktop.
minimal config.nix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
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