feat: various things, particularly vr

This commit is contained in:
Kat Inskip 2025-11-11 22:28:30 -08:00
parent e9b291078d
commit 7e70c182e5
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
24 changed files with 337 additions and 65 deletions

View file

@ -81,7 +81,7 @@
empty.url = "github:input-output-hk/empty-flake";
# self-explanatory
nixpkgs = {
follows = "chaotic/nixpkgs";
follows = "chaotic/nixpkgs"; # TODO: replace follows
#url = "github:nixos/nixpkgs/nixos-unstable";
#inputs.nixpkgs.follows = "chaotic/nixpkgs";
};
@ -267,6 +267,14 @@
flake-compat.follows = "flake-compat";
};
};
fzfdapter = {
url = "github:kittywitch/fzfdapter";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
flake-compat.follows = "flake-compat";
};
};
# file structure -> attrset
tree = {
url = "github:kittywitch/tree";
@ -345,6 +353,17 @@
flake-parts.follows = "flake-parts";
};
};
slimevr-wrangler-src = {
url = "github:kittywitch/slimevr-wrangler";
flake = false;
};
slimevr-wrangler = {
url = "github:kittywitch/slimevr-wrangler-flake";
inputs = {
#nixpkgs.follows = "nixpkgs";
slimevr-wrangler-src.follows = "slimevr-wrangler-src";
};
};
};
outputs = inputs: import ./outputs.nix {inherit inputs;};
}