Skip to content

Instantly share code, notes, and snippets.

@sorki
Created November 9, 2020 14:27
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 sorki/c0b107b6939eab8527a2051a67f13df5 to your computer and use it in GitHub Desktop.
Save sorki/c0b107b6939eab8527a2051a67f13df5 to your computer and use it in GitHub Desktop.
Overlay list
nixpkgs.overlays = [
# local would be
(import ./nixos-novena/overlay.nix modulesPath)
# remote
(import "${ builtins.fetchTarball { url = "https://github.com/novena-next/nixos-novena/archive/master.tar.gz"; }}/overlay.nix" modulesPath)
# some other
(self: super: { mpv-unwrapped = super.mpv-unwrapped.override { sambaSupport = false; }; })
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment