Initial commit for Nix package development

This commit is contained in:
Serĉanto de Scio 2019-10-24 23:48:05 +10:00
parent c171671813
commit 876a5e6b65
Signed by: sercanto
GPG key ID: A4122FF3971B6865

View file

@ -0,0 +1,14 @@
# NixOps configuration for the hosts I'm doing nixpkgs dev work on
{ config, pkgs, lib, ... }:
{
environment = {
systemPackages = with pkgs; [
nix-universal-prefetch # Uses nixpkgs fetchers to figure out hashes
cabal2nix # Convert Cabal files into Nix build instructions
];
};
}