mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
16 lines
355 B
Nix
16 lines
355 B
Nix
{
|
|
inputs = {
|
|
trusted = {
|
|
type = "git";
|
|
url = "gcrypt::ssh://git@github.com/arcnmx/kat-nixfiles-trusted.git";
|
|
ref = "shim";
|
|
flake = false;
|
|
};
|
|
nixfiles = {
|
|
url = "github:kittywitch/nixfiles";
|
|
inputs.trusted.follows = "trusted";
|
|
};
|
|
};
|
|
outputs = { self, trusted, nixfiles, ... }: let
|
|
in nixfiles;
|
|
}
|