From e41f726b28a5acdb68951820d93c5ed48b55eb3a Mon Sep 17 00:00:00 2001 From: NullBite Date: Mon, 18 Mar 2024 04:41:05 -0400 Subject: [PATCH] nixfiles-assets: go back to the flake method it works now??? --- flake.lock | 24 ++++++++++++++++++++++++ flake.nix | 9 +++++++++ 2 files changed, 33 insertions(+) diff --git a/flake.lock b/flake.lock index ec2b167..5c3d11b 100644 --- a/flake.lock +++ b/flake.lock @@ -279,6 +279,29 @@ "type": "github" } }, + "nixfiles-assets": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ], + "systems": [ + "systems" + ] + }, + "locked": { + "lastModified": 1710743555, + "narHash": "sha256-e8iXy4hCLYegNTeyB/GB8hj+gj1wPD+b+XOsEcdfEJY=", + "ref": "refs/heads/main", + "rev": "4ee66c3036eda78fe0ddada0e289a4f672ac4f57", + "revCount": 1, + "type": "git", + "url": "https://gitea.protogen.io/nullbite/nixfiles-assets" + }, + "original": { + "type": "git", + "url": "https://gitea.protogen.io/nullbite/nixfiles-assets" + } + }, "nixpkgs": { "locked": { "lastModified": 1709961763, @@ -351,6 +374,7 @@ "hyprwm-contrib": "hyprwm-contrib", "nix-index-database": "nix-index-database", "nix-wsl": "nix-wsl", + "nixfiles-assets": "nixfiles-assets", "nixpkgs": "nixpkgs_2", "nixpkgs-unstable": "nixpkgs-unstable", "pkg-android-tools": "pkg-android-tools", diff --git a/flake.nix b/flake.nix index 7e3b285..dcade92 100644 --- a/flake.nix +++ b/flake.nix @@ -46,6 +46,14 @@ url = "github:oxalica/rust-overlay"; inputs.nixpkgs.follows = "nixpkgs"; }; + + nixfiles-assets = { + # using self-hosted gitea mirror because of GitHub LFS bandwidth limit (even though i'd probably never hit it) + type = "git"; + url = "https://gitea.protogen.io/nullbite/nixfiles-assets"; + inputs.nixpkgs.follows = "nixpkgs"; + inputs.systems.follows = "systems"; + }; }; outputs = { self, nixpkgs, nixpkgs-unstable, ... }@inputs: @@ -72,6 +80,7 @@ inputs.hyprwm-contrib.overlays.default inputs.rust-overlay.overlays.default + inputs.nixfiles-assets.overlays.default ]; ### Configuration