all repos — homestead @ b56fe3e01fd31355e9b6ebd7b6df0ea9646c923f

Code for my website

Make compatible with non-flake nix

Alan Pearce
commit

b56fe3e01fd31355e9b6ebd7b6df0ea9646c923f

parent

b03d3f8d6336379c5ec92cddf3d27683f91e4264

1 file changed, 5 insertions(+), 1 deletion(-)

changed files
M flake.nixflake.nix
@@ -2,8 +2,12 @@ {
description = "My website, alanpearce.eu"; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; inputs.flake-utils.url = "github:numtide/flake-utils"; + inputs.flake-compat = { + url = "github:edolstra/flake-compat"; + flake = false; + }; - outputs = { self, nixpkgs, flake-utils }: + outputs = { self, nixpkgs, flake-utils, flake-compat }: flake-utils.lib.eachDefaultSystem (system: let pkgs = nixpkgs.legacyPackages.${system};