Flake Inputs: • Updated input 'gpu-screen-recorder-src': 'git+https://repo.dec05eba.com/gpu-screen-recorder' (2025-04-23) rev: 06b559ecef8aa81e9658e76bf3d5ad0c173087d5 → 'git+https://repo.dec05eba.com/gpu-screen-recorder' (2025-04-25) rev: b4bbed2402bc3a35f880679f45229157720f831a • Updated input 'home-manager': 'github:nix-community/home-manager' (2025-04-24) rev: abfad3d2958c9e6300a883bd443512c55dfeb1be → 'github:nix-community/home-manager' (2025-04-25) rev: 542078066b1a99cdc5d5fce1365f98b847ca0b5a • Updated input 'hyprgrass': 'github:horriblename/hyprgrass' (2025-04-23) rev: dab59fb9ddb29e90c868d42a3486dd51d2863cfe → 'github:horriblename/hyprgrass' (2025-04-25) rev: 669f8c80a15e9db815ac9e29068567735b9b1a79 • Updated input 'hyprland': 'github:hyprwm/Hyprland' (2025-04-24) rev: 0e80ecc5342db04c8c1f807fa6db4c703fb89e3a → 'github:hyprwm/Hyprland' (2025-04-25) rev: 742bce016cb848d222fbfcfcf8d3894ea3fdaeff • Updated input 'hyprland-plugins': 'github:hyprwm/hyprland-plugins' (2025-04-22) rev: 8e5e53adefdd96158841ee5b23bce4fe631bf57e → 'github:hyprwm/hyprland-plugins' (2025-04-25) rev: 61ab0385c8d9d456bf89539c76dd9e73becefde3 • Updated input 'nix-gaming': 'github:fufexan/nix-gaming' (2025-04-23) rev: 8582d6d908005589e1e0818da7558d63edbbbaf2 → 'github:fufexan/nix-gaming' (2025-04-25) rev: 8ae51ad90e1c75b8b77102240a02b6dea65fc15a • Updated input 'nixcord': 'github:kaylorben/nixcord' (2025-04-24) rev: f5720c0e0ea8ce733892af38d251b4d1bd06e78e → 'github:kaylorben/nixcord' (2025-04-25) rev: f5dd48df2e39d2b2cf9b5bad20997e88704f6a5e • Updated input 'spotifyplus-src': 'github:thlucas1/homeassistantcomponent_spotifyplus' (2025-04-24) rev: 851b0c09e8c78639ebb81700cda4e61153c3df48 → 'github:thlucas1/homeassistantcomponent_spotifyplus' (2025-04-25) rev: f327c86198e5d55c2879b2af0014d463271598de • Updated input 'tuya-local-src': 'github:make-all/tuya-local' (2025-04-22) rev: 0092b5041386d3a42ec66414bcb14d28778675f2 → 'github:make-all/tuya-local' (2025-04-25) rev: f59636f8bfdfecdd11846191fab18b922533cb44 • Updated input 'vimplugin-roslyn-nvim-src': 'github:seblj/roslyn.nvim' (2025-04-24) rev: 817983daa584d21f45d937928c87ba165b2a601a → 'github:seblj/roslyn.nvim' (2025-04-25) rev: 353bc0f30076b82d027a554229995f1e0fa1c5e1 Node modules: @types/node: 22.15.0 -> 22.15.2 eslint-plugin-jsdoc: 50.6.10 -> 50.6.11 qBittorrent Sources: Vuetorrent: 2.24.1 -> 2.24.2
447 lines
8.6 KiB
Nix
447 lines
8.6 KiB
Nix
let
|
|
inherit (import ./lib.nix) mkInput mkHyprDep mkSrc;
|
|
inherit (builtins) listToAttrs map removeAttrs;
|
|
|
|
# Inputs
|
|
mainInputs = {
|
|
systems = mkInput {
|
|
owner = "nix-systems";
|
|
repo = "default-linux";
|
|
};
|
|
|
|
nixpkgs = mkInput {
|
|
type = "git";
|
|
url = "https://github.com/NixOS/nixpkgs";
|
|
ref = "nixos-unstable";
|
|
shallow = true;
|
|
};
|
|
|
|
home-manager = mkInput {
|
|
owner = "nix-community";
|
|
repo = "home-manager";
|
|
};
|
|
|
|
nix-on-droid = mkInput {
|
|
owner = "nix-community";
|
|
repo = "nix-on-droid";
|
|
|
|
inputs.home-manager.follows = "home-manager";
|
|
};
|
|
|
|
sops-nix = mkInput {
|
|
owner = "Mic92";
|
|
repo = "sops-nix";
|
|
};
|
|
|
|
secrets = mkInput {
|
|
type = "git";
|
|
url = "ssh://git@git.nelim.org/matt1432/nixos-secrets";
|
|
|
|
inputs.sops-nix.follows = "sops-nix";
|
|
};
|
|
};
|
|
|
|
nixTools = {
|
|
nix-serve-ng = mkInput {
|
|
owner = "aristanetworks";
|
|
repo = "nix-serve-ng";
|
|
|
|
inputs.utils.follows = "flake-utils";
|
|
};
|
|
|
|
nix-fast-build = mkInput {
|
|
owner = "Mic92";
|
|
repo = "nix-fast-build";
|
|
};
|
|
|
|
nix-eval-jobs = mkInput {
|
|
owner = "nix-community";
|
|
repo = "nix-eval-jobs";
|
|
ref = "v2.28.1";
|
|
};
|
|
|
|
nix-index-db = mkInput {
|
|
owner = "Mic92";
|
|
repo = "nix-index-database";
|
|
};
|
|
|
|
nh = mkInput {
|
|
owner = "viperML";
|
|
repo = "nh";
|
|
};
|
|
|
|
nurl = mkInput {
|
|
owner = "nix-community";
|
|
repo = "nurl";
|
|
};
|
|
|
|
# These are here to make sure all 'systems' and popular inputs are the same
|
|
flake-compat = mkInput {
|
|
owner = "edolstra";
|
|
repo = "flake-compat";
|
|
};
|
|
flake-utils = mkInput {
|
|
owner = "numtide";
|
|
repo = "flake-utils";
|
|
};
|
|
flake-parts = mkInput {
|
|
owner = "hercules-ci";
|
|
repo = "flake-parts";
|
|
inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
};
|
|
treefmt-nix = mkInput {
|
|
owner = "numtide";
|
|
repo = "treefmt-nix";
|
|
};
|
|
lib-aggregate = mkInput {
|
|
owner = "nix-community";
|
|
repo = "lib-aggregate";
|
|
};
|
|
nix-github-actions = mkInput {
|
|
owner = "nix-community";
|
|
repo = "nix-github-actions";
|
|
};
|
|
pre-commit-hooks = mkInput {
|
|
owner = "cachix";
|
|
repo = "git-hooks.nix";
|
|
inputs.flake-compat.follows = "flake-compat";
|
|
};
|
|
};
|
|
|
|
overlays = {
|
|
nix-gaming = mkInput {
|
|
owner = "fufexan";
|
|
repo = "nix-gaming";
|
|
};
|
|
};
|
|
|
|
nvimInputs = {
|
|
nixd = mkInput {
|
|
owner = "nix-community";
|
|
repo = "nixd";
|
|
};
|
|
};
|
|
|
|
clusterInputs = {
|
|
pcsd = mkInput {
|
|
owner = "matt1432";
|
|
repo = "nixos-pcsd";
|
|
};
|
|
};
|
|
|
|
serviviInputs = {
|
|
minix = mkInput {
|
|
owner = "matt1432";
|
|
repo = "Minix";
|
|
};
|
|
|
|
pr-tracker = mkInput {
|
|
owner = "matt1432";
|
|
repo = "pr-tracker";
|
|
};
|
|
};
|
|
|
|
nosInputs = {
|
|
docker-compose = mkInput {
|
|
owner = "matt1432";
|
|
repo = "nixos-docker-compose";
|
|
};
|
|
|
|
nixos-jellyfin = mkInput {
|
|
owner = "matt1432";
|
|
repo = "nixos-jellyfin";
|
|
};
|
|
|
|
bazarr-bulk = mkInput {
|
|
owner = "mateoradman";
|
|
repo = "bazarr-bulk";
|
|
};
|
|
};
|
|
|
|
desktopInputs = {
|
|
hyprlandInputs = {
|
|
hyprland = mkInput {
|
|
owner = "hyprwm";
|
|
repo = "Hyprland";
|
|
};
|
|
|
|
hyprland-plugins = mkHyprDep {
|
|
owner = "hyprwm";
|
|
repo = "hyprland-plugins";
|
|
};
|
|
|
|
hyprgrass = mkHyprDep {
|
|
owner = "horriblename";
|
|
repo = "hyprgrass";
|
|
|
|
# FIXME: https://github.com/horriblename/hyprgrass/pull/232
|
|
rev = "669f8c80a15e9db815ac9e29068567735b9b1a79";
|
|
};
|
|
|
|
hyprpaper = mkHyprDep {
|
|
owner = "hyprwm";
|
|
repo = "hyprpaper";
|
|
};
|
|
|
|
grim-hyprland = mkInput {
|
|
owner = "eriedaberrie";
|
|
repo = "grim-hyprland";
|
|
};
|
|
|
|
nixcord = mkInput {
|
|
owner = "kaylorben";
|
|
repo = "nixcord";
|
|
};
|
|
};
|
|
|
|
shellInputs = {
|
|
quickshell = mkInput {
|
|
type = "git";
|
|
url = "https://git.outfoxxed.me/outfoxxed/quickshell";
|
|
};
|
|
|
|
astal = mkInput {
|
|
# owner = "Aylur";
|
|
repo = "astal";
|
|
|
|
# FIXME: https://github.com/Aylur/astal/pull/314
|
|
owner = "matt1432";
|
|
ref = "overlay";
|
|
};
|
|
|
|
ags = mkInput {
|
|
# owner = "Aylur";
|
|
repo = "ags";
|
|
|
|
# FIXME: https://github.com/Aylur/astal/pull/314
|
|
owner = "matt1432";
|
|
ref = "overlay";
|
|
|
|
inputs.astal.follows = "astal";
|
|
};
|
|
|
|
kompass = mkInput {
|
|
owner = "kotontrion";
|
|
repo = "kompass";
|
|
|
|
inputs.astal.follows = "astal";
|
|
};
|
|
|
|
virtualkeyboard-adapter = mkInput {
|
|
owner = "horriblename";
|
|
repo = "fcitx-virtualkeyboard-adapter";
|
|
};
|
|
};
|
|
};
|
|
|
|
bbsteamieInputs = {
|
|
jovian = mkInput {
|
|
owner = "Jovian-Experiments";
|
|
repo = "Jovian-NixOS";
|
|
};
|
|
};
|
|
|
|
srcs = [
|
|
# Home-assistant
|
|
## Components
|
|
{
|
|
name = "extended-ollama-conversation-src";
|
|
owner = "TheNimaj";
|
|
repo = "extended_ollama_conversation";
|
|
}
|
|
{
|
|
owner = "make-all";
|
|
repo = "tuya-local";
|
|
}
|
|
{
|
|
name = "netdaemon-src";
|
|
owner = "net-daemon";
|
|
repo = "integration";
|
|
}
|
|
{
|
|
owner = "osk2";
|
|
repo = "yamaha-soundbar";
|
|
}
|
|
|
|
### SpotifyPlus
|
|
{
|
|
name = "spotifyplus-src";
|
|
owner = "thlucas1";
|
|
repo = "homeassistantcomponent_spotifyplus";
|
|
}
|
|
{
|
|
name = "smartinspect-src";
|
|
owner = "thlucas1";
|
|
repo = "SmartInspectPython";
|
|
}
|
|
{
|
|
name = "spotifywebapi-src";
|
|
owner = "thlucas1";
|
|
repo = "SpotifyWebApiPython";
|
|
}
|
|
###
|
|
|
|
## Voice
|
|
{
|
|
name = "wakewords-src";
|
|
owner = "fwartner";
|
|
repo = "home-assistant-wakewords-collection";
|
|
}
|
|
|
|
## Themes
|
|
{
|
|
owner = "berti24";
|
|
repo = "dracul-ha";
|
|
}
|
|
{
|
|
name = "caule-themes-src";
|
|
owner = "ricardoquecria";
|
|
repo = "caule-themes-pack-1";
|
|
}
|
|
|
|
## Lovelace Components
|
|
{
|
|
owner = "beecho01";
|
|
repo = "material-symbols";
|
|
}
|
|
{
|
|
owner = "elchininet";
|
|
repo = "custom-sidebar";
|
|
}
|
|
|
|
# Nvim plugins
|
|
{
|
|
name = "vimplugin-easytables-src";
|
|
owner = "Myzel394";
|
|
repo = "easytables.nvim";
|
|
}
|
|
{
|
|
name = "vimplugin-ts-error-translator-src";
|
|
owner = "dmmulroy";
|
|
repo = "ts-error-translator.nvim";
|
|
}
|
|
{
|
|
name = "vimplugin-roslyn-nvim-src";
|
|
owner = "seblj";
|
|
repo = "roslyn.nvim";
|
|
}
|
|
{
|
|
name = "nix-develop-nvim-src";
|
|
owner = "matt1432";
|
|
repo = "nix-develop.nvim";
|
|
}
|
|
|
|
# Overlays & packages
|
|
{
|
|
name = "Kapowarr-src";
|
|
owner = "matt1432";
|
|
repo = "Kapowarr";
|
|
ref = "build-system";
|
|
# type = "path";
|
|
# path = "/home/matt/git/Kapowarr";
|
|
}
|
|
{
|
|
type = "gitlab";
|
|
owner = "rogs";
|
|
repo = "subscleaner";
|
|
}
|
|
{
|
|
type = "gitlab";
|
|
owner = "phoneybadger";
|
|
repo = "pokemon-colorscripts";
|
|
}
|
|
{
|
|
name = "gpu-screen-recorder-src";
|
|
type = "git";
|
|
url = "https://repo.dec05eba.com/gpu-screen-recorder";
|
|
}
|
|
{
|
|
owner = "libratbag";
|
|
repo = "libratbag";
|
|
}
|
|
{
|
|
owner = "libratbag";
|
|
repo = "piper";
|
|
}
|
|
{
|
|
owner = "gjsify";
|
|
repo = "ts-for-gir";
|
|
}
|
|
|
|
# MPV scripts
|
|
{
|
|
name = "modernz-src";
|
|
owner = "Samillion";
|
|
repo = "ModernZ";
|
|
}
|
|
{
|
|
owner = "d87";
|
|
repo = "mpv-persist-properties";
|
|
}
|
|
{
|
|
owner = "christoph-heinrich";
|
|
repo = "mpv-pointer-event";
|
|
}
|
|
{
|
|
owner = "christoph-heinrich";
|
|
repo = "mpv-touch-gestures";
|
|
}
|
|
{
|
|
name = "eisa-scripts-src";
|
|
owner = "Eisa01";
|
|
repo = "mpv-scripts";
|
|
}
|
|
|
|
## Theme sources
|
|
{
|
|
name = "bat-theme-src";
|
|
owner = "matt1432";
|
|
repo = "bat";
|
|
}
|
|
{
|
|
name = "git-theme-src";
|
|
owner = "dracula";
|
|
repo = "git";
|
|
}
|
|
{
|
|
name = "gtk-theme-src";
|
|
owner = "dracula";
|
|
repo = "gtk";
|
|
}
|
|
{
|
|
name = "nvim-theme-src";
|
|
owner = "Mofiqul";
|
|
repo = "dracula.nvim";
|
|
}
|
|
{
|
|
owner = "matt1432";
|
|
repo = "dracula-plymouth";
|
|
}
|
|
{
|
|
name = "sioyek-theme-src";
|
|
owner = "dracula";
|
|
repo = "sioyek";
|
|
}
|
|
];
|
|
in
|
|
{
|
|
flakegen = {
|
|
url = "github:jorsn/flakegen";
|
|
inputs.systems.follows = "systems";
|
|
};
|
|
}
|
|
// mainInputs
|
|
// nixTools
|
|
// overlays
|
|
// nvimInputs
|
|
// clusterInputs
|
|
// serviviInputs
|
|
// nosInputs
|
|
// bbsteamieInputs
|
|
// desktopInputs.hyprlandInputs
|
|
// desktopInputs.shellInputs
|
|
// (listToAttrs (map (x: {
|
|
name = x.name or "${x.repo}-src";
|
|
value = mkSrc (removeAttrs x ["name"]);
|
|
})
|
|
srcs))
|