diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-18 15:50:46 +0100 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-18 15:50:46 +0100 |
commit | 74af2a8b3b635cde5fb8baaacfa516a5e65935c0 (patch) | |
tree | 4d5c851fad2a309a176cf84ccddd012156ee6bca | |
parent | 320f870e99c9328e3e04d37dc86afc116f7412cb (diff) |
add a package overlay and my first package
Diffstat (limited to '')
-rw-r--r-- | default.nix | 2 | ||||
-rw-r--r-- | pkgs/default.nix | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/default.nix b/default.nix index 47b4463..eaa207e 100644 --- a/default.nix +++ b/default.nix @@ -2,4 +2,6 @@ modules = { require = import ./module-list.nix; }; + + overlays = import ./pkgs; } diff --git a/pkgs/default.nix b/pkgs/default.nix new file mode 100644 index 0000000..3a5e509 --- /dev/null +++ b/pkgs/default.nix @@ -0,0 +1,3 @@ +self: super: { + recipesEthMoe = self.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/recipes.eth.moe"; } ) {}; +} |