Skip to content

Instantly share code, notes, and snippets.

@Kiwi
Last active April 12, 2019 00:15
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 Kiwi/25b5758adbf18f64f9abcc5ce6074436 to your computer and use it in GitHub Desktop.
Save Kiwi/25b5758adbf18f64f9abcc5ce6074436 to your computer and use it in GitHub Desktop.
sudo nix-channel --list
nixos https://nixos.org/channels/nixos-unstable
nixos-1803 https://nixos.org/channels/nixos-18.03
nixos-1809 https://nixos.org/channels/nixos-18.09
nixos-1903 https://nixos.org/channels/nixos-19.03
nixos-stable https://nixos.org/channels/nixos-18.09
nixos-unstable https://nixos.org/channels/nixos-unstable
with import <nixpkgs> { };
{
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
stable = import <nixos-stable> { config = { allowUnfree = true; }; };
nixos-1803 = import <nixos-1803> { config = { allowUnfree = true; }; };
nixos-1809 = import <nixos-1809> { config = { allowUnfree = true; }; };
nixos-1903 = import <nixos-1903> { config = { allowUnfree = true; }; };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment