diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-07-06 18:31:44 +0100 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-07-06 18:31:44 +0100 |
commit | 53fdeac982e00e619b0b6c374311643d2bfcb988 (patch) | |
tree | 6cd4d0f47910e898fef2ca9dd02dae4e4d5db15c /pkgs | |
parent | eb4eda82de357e24d870aef34220b1a7e3c97127 (diff) |
add personal website to nixpkgs
Diffstat (limited to '')
-rw-r--r-- | pkgs/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index e8dd08c..573fd7b 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -35,6 +35,10 @@ let url = "https://github.com/ethulhu/recipes.eth.moe"; rev = "9c370bf0cd6a06bbcfa17e3c1f42f6ac6f92ffdb"; }; + website-personal = builtins.fetchGit { + url = "https://git.eth.moe/website-personal"; + rev = "b1e6491f77421ae4623391a7f53af7f3e6c13f34"; + }; in pkgs: super: { eth = { @@ -42,6 +46,8 @@ in jackalope = pkgs.callPackage jackalope {}; recipes = pkgs.callPackage recipes {}; + website-personal = pkgs.callPackage website-personal {}; + dwm = pkgs.callPackage ./dwm {}; catbus-lgtv = pkgs.callPackage catbus-lgtv {}; |