Skip to content

Instantly share code, notes, and snippets.

@romildo
Created September 5, 2016 12:30
Show Gist options
  • Save romildo/caf03a6dfdbb8f526ef30a091fd5a44f to your computer and use it in GitHub Desktop.
Save romildo/caf03a6dfdbb8f526ef30a091fd5a44f to your computer and use it in GitHub Desktop.
configuration.nix
nixpkgs.config = {
allowUnfree = true;
# ...
};
nixpkgs.config.packageOverrides = pkgs: rec {
pkgs_master = import /alt/nixpkgs {};
# ...
idea = pkgs_master.idea;
};
environment.systemPackages = with pkgs; [
# ...
idea.clion
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment