Skip to content

Instantly share code, notes, and snippets.

@Kiwi
Created October 25, 2019 00:54
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/99755b6898000329a60e259427bb62ea to your computer and use it in GitHub Desktop.
Save Kiwi/99755b6898000329a60e259427bb62ea to your computer and use it in GitHub Desktop.
nix-channel --list with tricky-channels.nix
[kiwi@mvp-nixos ~]$ 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-1909 https://nixos.org/channels/nixos-19.09
nixos-unstable https://nixos.org/channels/nixos-unstable
[kiwi@mvp-nixos ~]$
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; }; };
nixos-1909 = import <nixos-1909> { config = { allowUnfree = true; }; };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment