From d30f3933accca2cd4e4cfbdd502bb88aed97c115 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Thu, 6 Nov 2025 21:53:17 +0100 Subject: [PATCH] feat(flake): make my software using current nixpkgs. --- flake.nix | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index dfd0668..268289a 100644 --- a/flake.nix +++ b/flake.nix @@ -75,16 +75,28 @@ agenix.url = "github:ryantm/agenix"; # My selfhosted service, inspired by 0x0.st - upfast.url = "git+https://git.cronyakatsuki.xyz/crony/UpFast"; + upfast = { + url = "git+https://git.cronyakatsuki.xyz/crony/UpFast"; + inputs.nixpkgs.follows = "nixpkgs"; + }; # My note management app - note.url = "git+https://git.cronyakatsuki.xyz/crony/note"; + note = { + url = "git+https://git.cronyakatsuki.xyz/crony/note"; + inputs.nixpkgs.follows = "nixpkgs"; + }; # My custom script for downloading humble bundle bundle's - hb-downloader.url = "git+https://git.cronyakatsuki.xyz/crony/hb-downloader"; + hb-downloader = { + url = "git+https://git.cronyakatsuki.xyz/crony/hb-downloader"; + inputs.nixpkgs.follows = "nixpkgs"; + }; # My flake for installing lnxlink - lnxlink.url = "git+https://git.cronyakatsuki.xyz/crony/lnxlink-flake"; + lnxlink = { + url = "git+https://git.cronyakatsuki.xyz/crony/lnxlink-flake"; + inputs.nixpkgs.follows = "nixpkgs"; + }; # Dev version of hyprland hyprland = {