diff options
author | Ben Sima <ben@bsima.me> | 2020-05-02 15:39:07 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-05-02 15:39:07 -0700 |
commit | b8c33100286ab307f46d3dfe7adf44008cc59d3e (patch) | |
tree | 95a822b141fd2e08c03a8eb90dc72121c22ad0a4 /default.nix | |
parent | 93718f88d65d1fc4322fbd42804dfabc9128e4cd (diff) |
Auto-overlay niv sources
This is somewhat experimental, the idea is automatically set the sources
from my niv pinned deps. It seems to work, so I'll keep at it and see if
I can improve it as issues come up.
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix index de30805..f274f81 100644 --- a/default.nix +++ b/default.nix @@ -1,5 +1,5 @@ let - nixpkgs = import ./nix/nixpkgs.nix; + nixpkgs = import ./nix; build = import ./nix/build.nix { inherit nixpkgs; }; nixos-mailserver = let ver = "v2.3.0"; in builtins.fetchTarball { url = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/archive/${ver}/nixos-mailserver-${ver}.tar.gz"; |