diff --git a/README.md b/README.md deleted file mode 100644 index 0e08aab..0000000 --- a/README.md +++ /dev/null @@ -1,16 +0,0 @@ -### content - -where the markdown goes - -### public - -where the built html etc. goes -this is what you serve - -### static - -images - -### themes - -where the themes go, these define what kind of a website hugo spits out diff --git a/flake.lock b/flake.lock deleted file mode 100644 index f428ce8..0000000 --- a/flake.lock +++ /dev/null @@ -1,27 +0,0 @@ -{ - "nodes": { - "nixpkgs": { - "locked": { - "lastModified": 1767313136, - "narHash": "sha256-16KkgfdYqjaeRGBaYsNrhPRRENs0qzkQVUooNHtoy2w=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "ac62194c3917d5f474c1a844b6fd6da2db95077d", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-25.05", - "repo": "nixpkgs", - "type": "github" - } - }, - "root": { - "inputs": { - "nixpkgs": "nixpkgs" - } - } - }, - "root": "root", - "version": 7 -} diff --git a/flake.nix b/flake.nix deleted file mode 100644 index 2a0bb2c..0000000 --- a/flake.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ - description = "My blog"; - - inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; - }; - - outputs = - { self, nixpkgs }: - let - pkgs = import nixpkgs { system = "x86_64-linux"; }; - in - { - packages.x86_64-linux.default = pkgs.callPackage ./hub.nix { }; - }; -} diff --git a/hub.nix b/hub.nix deleted file mode 100644 index 513d184..0000000 --- a/hub.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ - lib, - stdenv, - hugo, -}: - -stdenv.mkDerivation { - pname = "blog"; - version = "0.1.0"; - src = lib.cleanSource ./.; - - buildInputs = [ hugo ]; - - buildPhase = '' - hugo --minify - ''; - - installPhase = '' - mkdir -p $out - cp -r public/* $out/ - ''; -} diff --git a/result b/result deleted file mode 120000 index a1f6290..0000000 --- a/result +++ /dev/null @@ -1 +0,0 @@ -/nix/store/68a55g2b98jlbf653a1z1d3piqj4wgzb-blog-0.1.0 \ No newline at end of file