eza, logseq, ...

This commit is contained in:
Kat Inskip 2023-10-02 14:17:52 -07:00
parent 805c9e8291
commit 2a42df1860
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
11 changed files with 169 additions and 80 deletions

View file

@ -13,7 +13,9 @@
# used for overriding unwanted flake inputs
empty.url = "github:input-output-hk/empty-flake";
# self-explanatory
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs = {
url = "github:nixos/nixpkgs/nixos-unstable";
};
# deployments
deploy-rs = {
url = "github:serokell/deploy-rs/master";
@ -116,9 +118,17 @@
url = "github:arcnmx/nixexprs/master";
flake = false;
};
artemiscore = {
url = "git+ssh://git@github.com/Glamorous-ai/metaflow-core-plugin.git?ref=develop";
inputs = {
flake-utils.follows = "utils";
nixpkgs.follows = "nixpkgs";
};
};
artemiscli = {
url = "git+ssh://git@github.com/Glamorous-ai/metaflow-cli-plugin.git";
inputs = {
artemiscore.follows = "artemiscore";
flake-utils.follows = "utils";
nixpkgs.follows = "nixpkgs";
std.follows = "std";