fix: flake sanity, remove relative paths

This commit is contained in:
Kat Inskip 2022-07-26 10:56:43 -07:00
parent 8f6859fa8d
commit d10b95e21a
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
5 changed files with 8 additions and 250 deletions

14
trusted/flake.nix Normal file
View file

@ -0,0 +1,14 @@
{
inputs = {
trusted = {
url = "git+ssh://git@github.com/kittywitch/nixfiles-trusted?ref=main";
flake = false;
};
nixfiles = {
url = "github:kittywitch/nixfiles";
inputs.trusted.follows = "trusted";
};
};
outputs = { self, trusted, nixfiles, ... }: let
in nixfiles;
}