feat: empty flake, reduce lockfile, flake-utils-plus

This commit is contained in:
Kat Inskip 2022-12-03 17:54:34 +01:00
parent b4249f0cd0
commit c4033ff00a
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
3 changed files with 153 additions and 103 deletions

View file

@ -1,6 +1,7 @@
{
description = "kat's personal system flakes";
inputs = {
empty.url = "github:input-output-hk/empty-flake";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager/master";
@ -10,7 +11,7 @@
url = "github:lnl7/nix-darwin/master";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-utils.url = "github:numtide/flake-utils";
utils.url = "github:gytis-ivaskevicius/flake-utils-plus";
tree = {
url = "github:kittywitch/tree";
inputs.nixpkgs.follows = "nixpkgs";
@ -19,12 +20,25 @@
url = "github:yaxitech/ragenix";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
flake-utils.follows = "utils";
};
};
scalpel = {
url = "github:polygon/scalpel";
inputs.nixpkgs.follows = "nixpkgs";
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 :/
sops-nix.follows = "empty";
};
};
mach-nix = {
url = "mach-nix/3.5.0";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "utils";
};
};
};
outputs = { ... }@inputs: import ./default.nix inputs;