Skip to content

Instantly share code, notes, and snippets.

@LnL7
Created May 27, 2017 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LnL7/7027a16168d4554aec166c8dd21ccccd to your computer and use it in GitHub Desktop.
Save LnL7/7027a16168d4554aec166c8dd21ccccd to your computer and use it in GitHub Desktop.
{ config, pkgs, ... }:
let
# Import unstable channel.
# sudo nix-channel --add http://nixos.org/channels/nixpkgs-unstable nixpkgs-unstable
unstable = import <nixpkgs-unstable> {};
in
{
environment.systemPackages =
[ pkgs.hello # regular channel
unstable.spotify # newer version from nixpkgs-unstable
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment