diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-10-26 22:03:13 +0000 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-10-26 22:03:13 +0000 |
commit | f619623f6bbf69626b44c87022cbae36ca13ccba (patch) | |
tree | 48731158278e0a09501d25394716bc225c2cf7fa | |
parent | 1c0b391594cdf03d3ee5da602c5c6d9a1ef370c4 (diff) |
update various websites
Diffstat (limited to '')
-rw-r--r-- | pkgs/default.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index d0bdc4a..5afd00c 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -37,11 +37,15 @@ let }; recipes = builtins.fetchGit { url = "https://github.com/ethulhu/recipes.eth.moe"; - rev = "9c370bf0cd6a06bbcfa17e3c1f42f6ac6f92ffdb"; + rev = "62148d9a64a5219816138ff5a93549a9e766627b"; + }; + website-moji= builtins.fetchGit { + url = "https://git.eth.moe/moji"; + rev = "4d18ecdb2ccd8776eab3f5d6da8804b93c44d7be"; }; website-personal = builtins.fetchGit { url = "https://git.eth.moe/website-personal"; - rev = "7e1ffeff0e2aa32665aaaebb7dfa70e1c56a432a"; + rev = "91762dff3488765d8c1713b8bb4454a8cfaf8387"; }; in pkgs: super: { @@ -51,6 +55,7 @@ in jackalope = pkgs.callPackage jackalope {}; recipes = pkgs.callPackage recipes {}; + website-moji = pkgs.callPackage website-moji {}; website-personal = pkgs.callPackage website-personal {}; dwm = pkgs.callPackage ./dwm {}; |