nixos-configs/inputs/default.nix
matt1432 72cf10cc67
All checks were successful
Discord / discord commits (push) Has been skipped
chore: update sources
Flake Inputs:
    • Updated input 'astal':
        'github:Aylur/astal' (2025-01-28) rev: cb1578a7917339a9df9fa87773a739a0249501e2
      → 'github:Aylur/astal' (2025-02-01) rev: 09c9df0ed498dbea214d38af74b90c9a8b023489

    • Updated input 'home-manager':
        'github:nix-community/home-manager' (2025-01-30) rev: a8159195bfaef3c64df75d3b1e6a68d49d392be9
      → 'github:nix-community/home-manager' (2025-02-01) rev: dae6d3460c8bab3ac9f38a86affe45b32818e764

    • Updated input 'hyprgrass':
        'github:horriblename/hyprgrass' (2025-01-27) rev: 184467d3b785c67062b240bd0eb5239e7ec5d09e
      → 'github:horriblename/hyprgrass' (2025-02-01) rev: f7017c493e071c02f203c09a63ef7260dede0586

    • Updated input 'hyprland':
        'github:hyprwm/Hyprland' (2025-01-31) rev: ddf180fa304e71b1d6eaa9f2b250a907131b05d9
      → 'github:hyprwm/Hyprland' (2025-02-01) rev: e380b6ed66aceeae8fde84b4baed0d91550e9f4c

    • Updated input 'jovian':
        'github:Jovian-Experiments/Jovian-NixOS' (2025-01-23) rev: 2dd65c3c92a4b8b1bf653657ae8648b883a4d427
      → 'github:Jovian-Experiments/Jovian-NixOS' (2025-01-31) rev: ad8f92168ff7aa442d9ca860879127251e348b2b

    • Updated input 'nix-gaming':
        'github:fufexan/nix-gaming' (2025-01-26) rev: 4845fe94cda365c7550d9fd1ef899d45df0bc18a
      → 'github:fufexan/nix-gaming' (2025-02-01) rev: cbe40678ac1b1cd345b169b6b8edbceeb43462b0

    • Updated input 'nixd':
        'github:nix-community/nixd' (2025-01-15) rev: 2c25600cb9c91bc06fe8676c044814dc30435274
      → 'github:nix-community/nixd' (2025-02-01) rev: 76c63a26caa1bb5bea70e74b61ae01503d498c08

    • Updated input 'nixpkgs-wayland':
        'github:nix-community/nixpkgs-wayland' (2025-01-31) rev: fbf8b601235addb73cbab8087d13dc1f63bf1b69
      → 'github:nix-community/nixpkgs-wayland' (2025-02-01) rev: 07797d04938e9528ee5ca71e8e32197f1f724378

    • Updated input 'pcsd':
        'github:matt1432/nixos-pcsd' (2025-01-19) rev: 27f80dbf864f52bc9f801db15ae8e767a315c5fe
      → 'github:matt1432/nixos-pcsd' (2025-02-01) rev: 1b27f1f60ae18e240269601ac09d9d5a096498b7

    • Updated input 'tuya-local-src':
        'github:make-all/tuya-local' (2025-01-31) rev: 24ea391ff5b135b8dc75a7c74d2d46d8e8958350
      → 'github:make-all/tuya-local' (2025-02-01) rev: d98aea8a3299d23cfc0cdffad59cde7e6bbc2914

Docker Images:
    • ghcr.io/linuxserver/sonarr latest:
       sha256:7f593f902c27aeb269cd92d3667049e62038540058b086bb32ec1711918f4503
     → sha256:47ce6f3b2afb17c12b393da2fefb11718f15cd1308baeba1cb61cbbbb9c5aedc

Node modules:
    @types/node: 22.12.0 -> 22.13.0

Misc Sources:
    Vuetorrent: 2.21.0 -> 2.22.0
2025-02-01 13:12:44 -05:00

457 lines
8.6 KiB
Nix

# TODO: add README
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 {
owner = "NixOS";
repo = "nixpkgs";
ref = "nixos-unstable";
};
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-fast-build = mkInput {
owner = "Mic92";
repo = "nix-fast-build";
};
nix-eval-jobs = mkInput {
owner = "nix-community";
repo = "nix-eval-jobs";
};
nix-index-db = mkInput {
owner = "Mic92";
repo = "nix-index-database";
};
nh = mkInput {
owner = "viperML";
repo = "nh";
};
nurl = mkInput {
owner = "nix-community";
repo = "nurl";
};
poetry2nix = mkInput {
owner = "nix-community";
repo = "poetry2nix";
};
# 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 = {
nixpkgs-wayland = mkInput {
owner = "nix-community";
repo = "nixpkgs-wayland";
};
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";
};
jellyfin-flake = 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";
};
hyprpaper = mkHyprDep {
owner = "hyprwm";
repo = "hyprpaper";
};
grim-hyprland = mkInput {
owner = "eriedaberrie";
repo = "grim-hyprland";
};
nixcord = mkInput {
owner = "kaylorben";
repo = "nixcord";
};
};
agsInputs = {
astal = mkInput {
owner = "Aylur";
repo = "astal";
};
ags = mkInput {
owner = "Aylur";
repo = "ags";
inputs.astal.follows = "astal";
};
kompass = mkInput {
owner = "kotontrion";
repo = "kompass";
inputs.astal.follows = "astal";
};
gtk-session-lock = mkInput {
owner = "Cu3PO42";
repo = "gtk-session-lock";
};
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 = "m50";
repo = "ha-fallback-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";
}
{
owner = "Nerwyn";
repo = "material-rounded-theme";
}
## 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
{
owner = "rushsteve1";
repo = "trash-d";
}
{
type = "gitlab";
owner = "rogs";
repo = "subscleaner";
}
{
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 = "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";
}
{
owner = "Godiesc";
repo = "firefox-gx";
# ref = "v.9.9";
rev = "6f5d07e11e008d6cbf4461e53daf80820afa8418";
}
{
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.agsInputs
// (listToAttrs (map (x: {
name = x.name or "${x.repo}-src";
value = mkSrc (removeAttrs x ["name"]);
})
srcs))