aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraditya <bluenerd@protonmail.com>2023-06-07 17:51:30 +0530
committeraditya <bluenerd@protonmail.com>2023-06-07 17:51:30 +0530
commit4501f9020852ee58a5ce9e996dcb7ee28e3cc95c (patch)
tree33d5183d022711b1e60405acebec515d04aa04de
parentbdcdee9e0940f63b65708736ee671f6e2c731994 (diff)
fix syntax
-rw-r--r--flake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index b59edb8..78f63be 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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";
};
};
}