Initial commit for Nix package development
This commit is contained in:
parent
c171671813
commit
876a5e6b65
14
Deployments/nixpkgs-dev.nix
Normal file
14
Deployments/nixpkgs-dev.nix
Normal 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
|
||||
];
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in a new issue