mirror of
https://git.adityakumar.xyz/blog.git
synced 2024-11-09 10:59:45 +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";
|
||||
|
||||
outputs = { self, nixpkgs }: {
|
||||
with import nixpkgs { system = "x86_64-linux"; };
|
||||
packages.x86_64-linux.default = with import nixpkgs { system = "x86_64-linux"; };
|
||||
stdenv.mkDerivation {
|
||||
name = "blog";
|
||||
buildInputs = [
|
||||
|
@ -13,7 +13,7 @@
|
|||
];
|
||||
src = self;
|
||||
buildPhase = "hugo server";
|
||||
installPhase = "./deploy.sh"
|
||||
installPhase = "./deploy.sh";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue