From 89ec44a7d3fc46b9ff41ccb059abd2e74d5f26dd Mon Sep 17 00:00:00 2001 From: tdback Date: Mon, 3 Mar 2025 21:20:12 -0500 Subject: flake: add nix build steps and README --- flake.nix | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index ced5e60..152f7d0 100644 --- a/flake.nix +++ b/flake.nix @@ -1,4 +1,6 @@ { + description = "tdback's website source code (tdback.net)"; + inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; outputs = @@ -9,27 +11,25 @@ "x86_64-linux" ]; eachSystem = nixpkgs.lib.genAttrs supportedSystems; + forPkgs = + fn: + nixpkgs.lib.mapAttrs (system: pkgs: (fn pkgs)) ( + nixpkgs.lib.getAttrs supportedSystems nixpkgs.legacyPackages + ); in { + packages = forPkgs (pkgs: { + default = pkgs.callPackage ./default.nix { }; + }); + devShells = eachSystem ( system: let pkgs = import nixpkgs { inherit system; }; in { - default = pkgs.mkShell { - buildInputs = with pkgs; [ - hugo - rsync - ]; - - shellHook = '' - SITE="$HOME/projects/tdback.net" - - publish() { - hugo && rsync -avz --delete public/ thor:/var/www/tdback.net/ - } - ''; + default = with pkgs; mkShell { + buildInputs = [ hugo ]; }; } ); -- cgit v1.2.3