feat: flake-compat

This commit is contained in:
Kat Inskip 2022-12-04 15:55:08 +01:00
parent ed581ca5b4
commit 419fcaa79f
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
5 changed files with 170 additions and 132 deletions

View file

@ -1,6 +1,10 @@
{
description = "kat's personal system flakes";
inputs = {
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
empty.url = "github:input-output-hk/empty-flake";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
@ -45,5 +49,5 @@
flake = false;
};
};
outputs = { ... }@inputs: import ./default.nix inputs;
outputs = { ... }@inputs: import ./outputs.nix inputs;
}