all repos — website @ 3d3ac02cf53695838eb149cc5c3a395fa4077db8

My website

Make compatible with non-flake nix

Alan Pearce
commit

3d3ac02cf53695838eb149cc5c3a395fa4077db8

parent

ea30ac77b60642d691a0508af5eb005186cf2851

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};