# NixOps configuration for the hosts I'm doing nixpkgs dev work on { config, pkgs, lib, ... }: { nixpkgs = { config = { allowUnfree = true; }; }; environment = { systemPackages = with pkgs; [ nix-universal-prefetch # Uses nixpkgs fetchers to figure out hashes cabal2nix # Convert Cabal files into Nix build instructions nodePackages.node2nix # Generate Nix expressions to build NPM packages ]; }; }