mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
219 lines
5.6 KiB
Nix
219 lines
5.6 KiB
Nix
{
|
||
description = "Kat's Infrastructure";
|
||
inputs = {
|
||
systems.url = "github:nix-systems/default";
|
||
# to allow non-nix 2.4 evaluation
|
||
flake-compat = {
|
||
url = "github:edolstra/flake-compat";
|
||
flake = false;
|
||
};
|
||
# better than nixpkgs.lib
|
||
std = {
|
||
url = "github:chessai/nix-std";
|
||
};
|
||
# used for overriding unwanted flake inputs
|
||
empty.url = "github:input-output-hk/empty-flake";
|
||
# self-explanatory
|
||
nixpkgs = {
|
||
url = "github:nixos/nixpkgs/nixos-unstable";
|
||
};
|
||
lanzaboote = {
|
||
url = "github:nix-community/lanzaboote/v0.3.0";
|
||
|
||
# Optional but recommended to limit the size of your system closure.
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
flake-utils.follows = "utils";
|
||
flake-compat.follows = "flake-compat";
|
||
};
|
||
};
|
||
flakelibstd = {
|
||
url = "github:flakelib/std";
|
||
inputs.nix-std.follows = "std";
|
||
};
|
||
flakelib = {
|
||
url = "github:flakelib/fl";
|
||
inputs.std.follows = "flakelibstd";
|
||
};
|
||
# deployments
|
||
deploy-rs = {
|
||
url = "github:serokell/deploy-rs/master";
|
||
inputs = {
|
||
flake-compat.follows = "flake-compat";
|
||
nixpkgs.follows = "nixpkgs";
|
||
utils.follows = "utils";
|
||
};
|
||
};
|
||
# 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";
|
||
};
|
||
# status bar
|
||
spacebar = {
|
||
url = "github:cmacrae/spacebar/v1.4.0";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
flake-utils.follows = "utils";
|
||
};
|
||
};
|
||
# WSL host
|
||
wsl = {
|
||
url = "github:nix-community/NixOS-WSL";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
flake-utils.follows = "utils";
|
||
flake-compat.follows = "flake-compat";
|
||
};
|
||
};
|
||
utils = {
|
||
url = "github:numtide/flake-utils";
|
||
inputs.systems.follows = "systems";
|
||
};
|
||
# file structure -> attrset
|
||
tree = {
|
||
url = "github:kittywitch/tree";
|
||
inputs = {
|
||
std.follows = "std";
|
||
nixpkgs.follows = "nixpkgs";
|
||
};
|
||
};
|
||
# konawall-py
|
||
konawall-py = {
|
||
url = "github:kittywitch/konawall-py";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
flake-utils.follows = "utils";
|
||
};
|
||
};
|
||
# hardware quirks
|
||
nixos-hardware.url = "github:NixOS/nixos-hardware";
|
||
# secrets
|
||
sops-nix = {
|
||
url = "github:Mic92/sops-nix";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
nixpkgs-stable.follows = "nixpkgs";
|
||
};
|
||
};
|
||
# secrets templating
|
||
scalpel = {
|
||
url = "github:polygon/scalpel";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
sops-nix.follows = "sops-nix";
|
||
};
|
||
};
|
||
# dependency database for mach-nix
|
||
pypi-deps-db = {
|
||
url = "github:DavHau/pypi-deps-db";
|
||
flake = false;
|
||
};
|
||
hyprlang = {
|
||
url = "github:hyprwm/hyprlang";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
systems.follows = "systems";
|
||
};
|
||
};
|
||
xdph = {
|
||
url = "github:hyprwm/xdg-desktop-portal-hyprland";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
systems.follows = "systems";
|
||
hyprlang.follows = "hyprlang";
|
||
hyprland-protocols.follows = "hyprland-protocols";
|
||
};
|
||
};
|
||
hyprland-protocols = {
|
||
url = "github:hyprwm/hyprland-protocols";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
systems.follows = "systems";
|
||
};
|
||
};
|
||
hyprland = {
|
||
url = "github:hyprwm/Hyprland";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
systems.follows = "systems";
|
||
hyprlang.follows = "hyprlang";
|
||
xdph.follows = "xdph";
|
||
hyprland-protocols.follows = "hyprland-protocols";
|
||
};
|
||
};
|
||
hyprsome = {
|
||
url = "github:kittywitch/hyprsome";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
flake-utils.follows = "utils";
|
||
};
|
||
};
|
||
hyprlock = {
|
||
url = "github:hyprwm/hyprlock";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
systems.follows = "systems";
|
||
hyprlang.follows = "hyprlang";
|
||
};
|
||
};
|
||
# nixified python environments
|
||
mach-nix = {
|
||
url = "mach-nix/3.5.0";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
flake-utils.follows = "utils";
|
||
pypi-deps-db.follows = "pypi-deps-db";
|
||
};
|
||
};
|
||
# pre-computed nix-index
|
||
nix-index-database = {
|
||
url = "github:Mic92/nix-index-database";
|
||
inputs.nixpkgs.follows = "nixpkgs";
|
||
};
|
||
minecraft = {
|
||
url = "github:Infinidoge/nix-minecraft";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
flake-utils.follows = "utils";
|
||
flake-compat.follows = "flake-compat";
|
||
};
|
||
};
|
||
# a bunch of modules (also arcnmx is good)
|
||
arcexprs = {
|
||
url = "github:arcnmx/nixexprs/master";
|
||
};
|
||
base16 = {
|
||
url = "github:arcnmx/base16.nix/flake";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
flakelib.follows = "flakelib";
|
||
};
|
||
};
|
||
base16-data = {
|
||
url = "github:arcnmx/base16.nix/data";
|
||
inputs = {
|
||
base16.follows = "base16";
|
||
nixpkgs.follows = "nixpkgs";
|
||
flakelib.follows = "flakelib";
|
||
};
|
||
};
|
||
# plasma manager
|
||
plasma-manager = {
|
||
url = "github:pjones/plasma-manager";
|
||
inputs = {
|
||
nixpkgs.follows = "nixpkgs";
|
||
home-manager.follows = "home-manager";
|
||
};
|
||
};
|
||
nur.url = "github:nix-community/NUR";
|
||
};
|
||
outputs = inputs: import ./outputs.nix {inherit inputs;};
|
||
}
|