mirror of
https://git.adityakumar.xyz/blog.git
synced 2024-11-09 19:09:43 +00:00
update git submodule url
This commit is contained in:
parent
075f2df852
commit
bdcdee9e09
2 changed files with 21 additions and 2 deletions
4
.gitmodules
vendored
4
.gitmodules
vendored
|
@ -1,6 +1,6 @@
|
||||||
[submodule "themes/hugo-theme-even"]
|
[submodule "themes/hugo-theme-even"]
|
||||||
path = themes/hugo-theme-even
|
path = themes/hugo-theme-even
|
||||||
url = https://banyan.divineduty.xyz/GNUxeava/hugo-theme-even
|
url = https://gitea.adityakumar.xyz/aditya/hugo-theme-even
|
||||||
[submodule "themes/even"]
|
[submodule "themes/even"]
|
||||||
path = themes/even
|
path = themes/even
|
||||||
url = https://banyan.divineduty.xyz/GNUxeava/hugo-theme-even
|
url = https://gitea.adityakumar.xyz/aditya/hugo-theme-even
|
||||||
|
|
19
flake.nix
Normal file
19
flake.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
description = "A flake for publishing blog posts to https://blog.adityakumar.xyz/";
|
||||||
|
|
||||||
|
inputs.nixpkgs.url = "github:nixos/nixpkgs/23.05";
|
||||||
|
|
||||||
|
outputs = { self, nixpkgs }: {
|
||||||
|
with import nixpkgs { system = "x86_64-linux"; };
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "blog";
|
||||||
|
buildInputs = [
|
||||||
|
pkgs.hugo
|
||||||
|
pkgs.rsync
|
||||||
|
];
|
||||||
|
src = self;
|
||||||
|
buildPhase = "hugo server";
|
||||||
|
installPhase = "./deploy.sh"
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue