mirror of
https://git.adityakumar.xyz/blog.git
synced 2024-11-09 19:09:43 +00:00
fix syntax
This commit is contained in:
parent
bdcdee9e09
commit
4501f90208
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
||||||
inputs.nixpkgs.url = "github:nixos/nixpkgs/23.05";
|
inputs.nixpkgs.url = "github:nixos/nixpkgs/23.05";
|
||||||
|
|
||||||
outputs = { self, nixpkgs }: {
|
outputs = { self, nixpkgs }: {
|
||||||
with import nixpkgs { system = "x86_64-linux"; };
|
packages.x86_64-linux.default = with import nixpkgs { system = "x86_64-linux"; };
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "blog";
|
name = "blog";
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
];
|
];
|
||||||
src = self;
|
src = self;
|
||||||
buildPhase = "hugo server";
|
buildPhase = "hugo server";
|
||||||
installPhase = "./deploy.sh"
|
installPhase = "./deploy.sh";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue