matt1432
f8dd9f7891
All checks were successful
Discord / discord commits (push) Has been skipped
Flake Inputs: • Updated input 'astal': 'github:Aylur/astal/5ae0a9e' (2024-09-21) → 'github:Aylur/astal/8cab7d0' (2024-09-22) • Updated input 'home-manager': 'github:nix-community/home-manager/14929f7' (2024-09-21) → 'github:nix-community/home-manager/04213d1' (2024-09-22) • Updated input 'hyprland': 'git+https://github.com/hyprwm/Hyprland?ref=refs/heads/main&rev=b248d59&submodules=1' (2024-09-18) → 'git+https://github.com/hyprwm/Hyprland?ref=refs/heads/main&rev=e5ff19a&submodules=1' (2024-09-22) • Updated input 'jovian': 'github:Jovian-Experiments/Jovian-NixOS/faf4c74' (2024-09-21) → 'github:Jovian-Experiments/Jovian-NixOS/d71bcb4' (2024-09-22) • Updated input 'nix-gaming': 'github:fufexan/nix-gaming/7ea77f2' (2024-09-20) → 'github:fufexan/nix-gaming/43a085b' (2024-09-22) • Updated input 'nix-index-db': 'github:Mic92/nix-index-database/c1b0fa0' (2024-09-16) → 'github:Mic92/nix-index-database/c7515c2' (2024-09-22) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/eca2693' (2024-09-21) → 'github:NixOS/nixpkgs/c04d565' (2024-09-19) • Updated input 'nixpkgs-wayland': 'github:nix-community/nixpkgs-wayland/ff23ca1' (2024-09-21) → 'github:nix-community/nixpkgs-wayland/a1318d7' (2024-09-22) Docker Images: • nextcloud fpm: sha256:74e016552a6f908fa3700c0dfa3757fb20f8ff2a630cd357ebbdc9c359a53bf0 → sha256:724553f742322d67f34282be46b414572d4e0cd46ccd54d2f2a24b6a87a472b0 • ghcr.io/linuxserver/radarr latest: sha256:dfbce5095045fc1c15058318342ee590ab50379854b13464dd2ca17b10c4beb4 → sha256:df843d96b812d858b94377ffed1918424ece6735038a19e8ff93730277757b65
330 lines
6.2 KiB
Nix
330 lines
6.2 KiB
Nix
let
|
|
inherit (import ./lib {}) lib mkDep mkInput mkHyprDep mkSrc;
|
|
inherit (lib) listToAttrs map removeAttrs;
|
|
|
|
# Inputs
|
|
nixTools = {
|
|
nix-fast-build = mkDep {
|
|
owner = "Mic92";
|
|
repo = "nix-fast-build";
|
|
};
|
|
|
|
nix-index-db = mkDep {
|
|
owner = "Mic92";
|
|
repo = "nix-index-database";
|
|
};
|
|
|
|
nh = mkDep {
|
|
owner = "viperML";
|
|
repo = "nh";
|
|
};
|
|
|
|
# These are here to make sure all 'systems' are the same
|
|
flake-utils = mkInput {
|
|
owner = "numtide";
|
|
repo = "flake-utils";
|
|
};
|
|
lib-aggregate = mkInput {
|
|
owner = "nix-community";
|
|
repo = "lib-aggregate";
|
|
};
|
|
};
|
|
|
|
overlays = {
|
|
nixpkgs-wayland = mkDep {
|
|
owner = "nix-community";
|
|
repo = "nixpkgs-wayland";
|
|
};
|
|
|
|
nix-gaming = mkDep {
|
|
owner = "fufexan";
|
|
repo = "nix-gaming";
|
|
};
|
|
};
|
|
|
|
nvimInputs = {
|
|
# uses nixVersions.nix_2_19
|
|
nixd = mkDep {
|
|
owner = "nix-community";
|
|
repo = "nixd";
|
|
};
|
|
};
|
|
|
|
clusterInputs = {
|
|
pcsd = mkDep {
|
|
owner = "matt1432";
|
|
repo = "nixos-pcsd";
|
|
};
|
|
|
|
# FIXME: use nixpkgs once this reaches unstable
|
|
# https://github.com/NixOS/nixpkgs/pull/340054
|
|
headscale = mkDep {
|
|
owner = "juanfont";
|
|
repo = "headscale";
|
|
ref = "v0.23.0";
|
|
};
|
|
|
|
caddy-plugins = mkDep {
|
|
owner = "matt1432";
|
|
repo = "nixos-caddy-cloudflare";
|
|
};
|
|
};
|
|
|
|
serviviInputs = {
|
|
minix = mkDep {
|
|
owner = "matt1432";
|
|
repo = "Minix";
|
|
};
|
|
|
|
pr-tracker = mkDep {
|
|
owner = "matt1432";
|
|
repo = "pr-tracker";
|
|
};
|
|
};
|
|
|
|
nosInputs = {
|
|
khepri = mkDep {
|
|
owner = "matt1432";
|
|
repo = "khepri";
|
|
};
|
|
|
|
jellyfin-flake = mkDep {
|
|
owner = "matt1432";
|
|
repo = "nixos-jellyfin";
|
|
};
|
|
|
|
bazarr-bulk = mkDep {
|
|
owner = "mateoradman";
|
|
repo = "bazarr-bulk";
|
|
};
|
|
|
|
subsync = mkDep {
|
|
owner = "matt1432";
|
|
repo = "subsync";
|
|
|
|
# Keep version that uses Sphinxbase
|
|
rev = "ee9e1592ae4ec7c694d8857aa72be079d81ea209";
|
|
};
|
|
};
|
|
|
|
desktopInputs = {
|
|
hyprlandInputs = {
|
|
hyprland = mkDep {
|
|
type = "git";
|
|
url = "https://github.com/hyprwm/Hyprland";
|
|
submodules = true;
|
|
};
|
|
|
|
hyprland-plugins = mkHyprDep {
|
|
owner = "hyprwm";
|
|
repo = "hyprland-plugins";
|
|
|
|
# type = "path";
|
|
# path = "/home/matt/git/hyprland-plugins";
|
|
};
|
|
|
|
hyprgrass = mkHyprDep {
|
|
owner = "horriblename";
|
|
repo = "hyprgrass";
|
|
};
|
|
|
|
hyprpaper = mkDep {
|
|
owner = "hyprwm";
|
|
repo = "hyprpaper";
|
|
};
|
|
|
|
grim-hyprland = mkDep {
|
|
owner = "eriedaberrie";
|
|
repo = "grim-hyprland";
|
|
};
|
|
|
|
discord-overlay = mkDep {
|
|
owner = "matt1432";
|
|
repo = "discord-nightly-overlay";
|
|
};
|
|
};
|
|
|
|
agsInputs = {
|
|
ags = mkDep {
|
|
owner = "Aylur";
|
|
repo = "ags";
|
|
};
|
|
|
|
astal = mkDep {
|
|
owner = "Aylur";
|
|
repo = "astal";
|
|
};
|
|
|
|
gtk-session-lock = mkDep {
|
|
owner = "Cu3PO42";
|
|
repo = "gtk-session-lock";
|
|
};
|
|
};
|
|
};
|
|
|
|
srcs = [
|
|
# Home-assistant
|
|
{
|
|
name = "extended-ollama-conversation-src";
|
|
owner = "TheNimaj";
|
|
repo = "extended_ollama_conversation";
|
|
}
|
|
{
|
|
name = "spotifyplus-src";
|
|
owner = "thlucas1";
|
|
repo = "homeassistantcomponent_spotifyplus";
|
|
}
|
|
{
|
|
name = "smartinspect-src";
|
|
owner = "thlucas1";
|
|
repo = "SmartInspectPython";
|
|
}
|
|
{
|
|
name = "spotifywebapi-src";
|
|
owner = "thlucas1";
|
|
repo = "SpotifyWebApiPython";
|
|
}
|
|
|
|
{
|
|
name = "wakewords-src";
|
|
owner = "fwartner";
|
|
repo = "home-assistant-wakewords-collection";
|
|
}
|
|
{
|
|
owner = "berti24";
|
|
repo = "dracul-ha";
|
|
}
|
|
|
|
# Nvim plugins
|
|
{
|
|
name = "vimplugin-easytables-src";
|
|
owner = "Myzel394";
|
|
repo = "easytables.nvim";
|
|
}
|
|
{
|
|
name = "vimplugin-ts-error-translator-src";
|
|
owner = "dmmulroy";
|
|
repo = "ts-error-translator.nvim";
|
|
}
|
|
|
|
# Overlays & packages
|
|
{
|
|
owner = "rushsteve1";
|
|
repo = "trash-d";
|
|
}
|
|
{
|
|
type = "gitlab";
|
|
owner = "mishakmak";
|
|
repo = "pam-fprint-grosshack";
|
|
}
|
|
{
|
|
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";
|
|
}
|
|
{
|
|
owner = "jcnils";
|
|
repo = "protonhax";
|
|
}
|
|
|
|
# MPV scripts
|
|
{
|
|
name = "modernx-src";
|
|
owner = "cyl0";
|
|
repo = "ModernX";
|
|
}
|
|
{
|
|
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";
|
|
}
|
|
{
|
|
owner = "Godiesc";
|
|
repo = "firefox-gx";
|
|
ref = "v.9.5";
|
|
}
|
|
{
|
|
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 {
|
|
inherit mkDep mkInput mkSrc;
|
|
|
|
otherInputs =
|
|
{
|
|
flakegen = {
|
|
url = "github:jorsn/flakegen";
|
|
inputs.systems.follows = "systems";
|
|
};
|
|
}
|
|
// nixTools
|
|
// overlays
|
|
// nvimInputs
|
|
// clusterInputs
|
|
// serviviInputs
|
|
// nosInputs
|
|
// desktopInputs.hyprlandInputs
|
|
// desktopInputs.agsInputs
|
|
// (listToAttrs (map (x: {
|
|
name = x.name or "${x.repo}-src";
|
|
value = mkSrc (removeAttrs x ["name"]);
|
|
})
|
|
srcs));
|
|
}
|