feat: lurching towards relative usability

This commit is contained in:
Kat Inskip 2023-01-16 17:31:04 -05:00
parent a0fb7eb402
commit 961ec369ba
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
51 changed files with 1349 additions and 407 deletions

View file

@ -1,25 +1,33 @@
{
description = "kat's personal system flakes";
description = "the katzian monorepo effort";
inputs = {
# to allow non-nix 2.4 evaluation
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
# used for overriding unwanted flake inputs
empty.url = "github:input-output-hk/empty-flake";
# self-explanatory
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
# self-explanatory
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
# self-explanatory
darwin = {
url = "github:lnl7/nix-darwin/master";
inputs.nixpkgs.follows = "nixpkgs";
};
utils.url = "github:gytis-ivaskevicius/flake-utils-plus";
# flake-utils
utils.url = "github:numtide/flake-utils";
# file structure -> attrset
tree = {
url = "github:kittywitch/tree";
inputs.nixpkgs.follows = "nixpkgs";
};
# secrets
ragenix = {
url = "github:yaxitech/ragenix";
inputs = {
@ -27,20 +35,23 @@
flake-utils.follows = "utils";
};
};
# secrets templating
scalpel = {
url = "github:polygon/scalpel";
inputs = {
nixpkgs.follows = "nixpkgs";
# i get that you have to test shit, but isn't throwing sops-nix and thus three
# whole fucking versions of nixpkgs into shit a little excessive?
# fuck the sops-nix people to begin with :/
# making people have to stub this out unless they want to deal with importing that is a pain
sops-nix.follows = "empty";
};
};
# dependency database for mach-nix
pypi-deps-db = {
url = "github:DavHau/pypi-deps-db";
flake = false;
};
# nixified python environments
mach-nix = {
url = "mach-nix/3.5.0";
inputs = {
@ -49,10 +60,16 @@
pypi-deps-db.follows = "pypi-deps-db";
};
};
# pre-computed nix-index
nix-index-database = {
url = "github:Mic92/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
# a bunch of modules (also arcnmx is good)
arcexprs = {
url = "github:arcnmx/nixexprs/master";
flake = false;
};
};
outputs = { ... }@inputs: import ./outputs.nix inputs;
outputs = inputs: import ./outputs.nix inputs;
}