mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: empty flake, reduce lockfile, flake-utils-plus
This commit is contained in:
parent
b4249f0cd0
commit
c4033ff00a
3 changed files with 153 additions and 103 deletions
20
flake.nix
20
flake.nix
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue