Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 9 lines 257 B view raw
1# The unstable nixpkgs set (declared in the flake inputs) will 2# be accessible through `pkgs.unstable` 3{ inputs, ... }: { 4 flake.overlays.unstable = final: prev: { 5 unstable = import inputs.nixpkgs-unstable { 6 inherit (final) system; 7 }; 8 }; 9}