All checks were successful
Discord / discord commits (push) Has been skipped
Flake Inputs: • Updated input 'custom-sidebar-src': 'github:elchininet/custom-sidebar' (2025-02-03) rev: aef23f2fa31d99c72ba3690fb3aac7ec949d76c1 → 'github:elchininet/custom-sidebar' (2025-02-04) rev: a901b689ada3476da7957c8c8f6a8fe7b87c8e46 • Updated input 'docker-compose': 'github:matt1432/nixos-docker-compose' (2025-02-04) rev: 576dc92dce3b07c9bc6b59a96a12703de8a1a1da → 'github:matt1432/nixos-docker-compose' (2025-02-04) rev: 2d202ac11867fab295ddd03acada4fa8ad4e1612 • Updated input 'home-manager': 'github:nix-community/home-manager' (2025-02-03) rev: 066ba0c5cfddbc9e0dddaec73b1561ad38aa8abe → 'github:nix-community/home-manager' (2025-02-04) rev: 7abcf59a365430b36f84eaa452a466b11e469e33 • Updated input 'hyprland': 'github:hyprwm/Hyprland' (2025-02-03) rev: 5e7292434a9189d0550187f8a6fb687848194a41 → 'github:hyprwm/Hyprland' (2025-02-04) rev: 3b99e906df8b439d65e740301940e57efc057012 • Updated input 'modernz-src': 'github:Samillion/ModernZ' (2025-01-30) rev: b38043da940e3809501ea5549638adc91c5b428e → 'github:Samillion/ModernZ' (2025-02-04) rev: 23b0d4d16587ab063ff7ed95d0a6ae0df23ace14 • Updated input 'nix-gaming': 'github:fufexan/nix-gaming' (2025-02-02) rev: 5542800ed394225b5560a25e7fb92455bdcf5b85 → 'github:fufexan/nix-gaming' (2025-02-04) rev: 3c83a677771fea8b55724f2d5cde0ca878c65712 • Updated input 'nixcord': 'github:kaylorben/nixcord' (2025-02-01) rev: 4127ece8315c718d024b5e090416dd96b1cc1b0f → 'github:kaylorben/nixcord' (2025-02-04) rev: adf7f6f821f80ac67b482fb374255b210d885bf8 • Updated input 'nixpkgs': 'github:NixOS/nixpkgs' (2025-02-01) rev: 3a228057f5b619feb3186e986dbe76278d707b6e → 'github:NixOS/nixpkgs' (2025-02-03) rev: c6e957d81b96751a3d5967a0fd73694f303cc914 • Updated input 'nixpkgs-wayland': 'github:nix-community/nixpkgs-wayland' (2025-02-02) rev: 8be0c76038b1f76914c600f48ee012fb40714f18 → 'github:nix-community/nixpkgs-wayland' (2025-02-04) rev: 8c0ca69b34e6d514e1153e6fb07d14c2c62b9fa4 • Updated input 'tuya-local-src': 'github:make-all/tuya-local' (2025-02-03) rev: cffc3d38e5c1a0bf6059e3917a3afac453f7ca82 → 'github:make-all/tuya-local' (2025-02-04) rev: 626623ba3e5709b5c989f90a1e41a965a2786416 Docker Images: • postgres 14: sha256:7fe0928f6de61208d6b39730456085d74578046df4c684fa198f0fb065f4381e → sha256:84dee213c689b6dfcc0e2692ddd66adcd7314057175ea7aa05500c527e0f807a • postgres 14: sha256:7fe0928f6de61208d6b39730456085d74578046df4c684fa198f0fb065f4381e → sha256:84dee213c689b6dfcc0e2692ddd66adcd7314057175ea7aa05500c527e0f807a • rssbridge/rss-bridge latest: sha256:432e82149408951fe5865d85726e034e507106208fd13ba44e9fd23facaccbcc → sha256:035d245d5f4e541451ce737d994c51d69506e50759f9e3bc6f2491668caed1f6 • nextcloud fpm: sha256:4c898a6e3a17fcd3bcbe9d2450079a95581cfb9f0dbfca246c39bd60c77d123b → sha256:07c4bfc1c38a3326e3ee777cbe6691de74424486bdc21ac31d291902c041296f • nginx latest: sha256:0a399eb16751829e1af26fea27b20c3ec28d7ab1fb72182879dcae1cca21206a → sha256:bc2f6a7c8ddbccf55bdb19659ce3b0a92ca6559e86d42677a5a02ef6bda2fcef Firefox Addons: sound-volume: 1.5.8 -> 1.5.9
460 lines
8.7 KiB
Nix
460 lines
8.7 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";
|
|
|
|
# FIXME: gamescope build failure on latest
|
|
rev = "77fb0818cb42ca0db98839d47bbc6a317c286282";
|
|
};
|
|
};
|
|
|
|
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))
|