From 70e4d4f7a282d24c3bda8193a0cfffac39948e79 Mon Sep 17 00:00:00 2001 From: ant Date: Sun, 12 Jan 2025 16:34:55 +0100 Subject: [PATCH] update flake & add my st to inputs --- flake.lock | 81 +++++++++++++++++++++++++++++++++++++++++++++++++----- flake.nix | 4 +++ 2 files changed, 78 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index 783dcf8..6fc6a89 100644 --- a/flake.lock +++ b/flake.lock @@ -15,6 +15,24 @@ "type": "github" } }, + "flake-utils_2": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "home-manager": { "inputs": { "nixpkgs": [ @@ -22,11 +40,11 @@ ] }, "locked": { - "lastModified": 1734366194, - "narHash": "sha256-vykpJ1xsdkv0j8WOVXrRFHUAdp9NXHpxdnn1F4pYgSw=", + "lastModified": 1736373539, + "narHash": "sha256-dinzAqCjenWDxuy+MqUQq0I4zUSfaCvN9rzuCmgMZJY=", "owner": "nix-community", "repo": "home-manager", - "rev": "80b0fdf483c5d1cb75aaad909bd390d48673857f", + "rev": "bd65bc3cde04c16755955630b344bc9e35272c56", "type": "github" }, "original": { @@ -59,11 +77,27 @@ }, "nixpkgs": { "locked": { - "lastModified": 1734737257, - "narHash": "sha256-GIMyMt1pkkoXdCq9un859bX6YQZ/iYtukb9R5luazLM=", + "lastModified": 1736549401, + "narHash": "sha256-ibkQrMHxF/7TqAYcQE+tOnIsSEzXmMegzyBWza6uHKM=", "owner": "nixos", "repo": "nixpkgs", - "rev": "1c6e20d41d6a9c1d737945962160e8571df55daa", + "rev": "1dab772dd4a68a7bba5d9460685547ff8e17d899", + "type": "github" + }, + "original": { + "owner": "nixos", + "ref": "nixos-24.11", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_2": { + "locked": { + "lastModified": 1736549401, + "narHash": "sha256-ibkQrMHxF/7TqAYcQE+tOnIsSEzXmMegzyBWza6uHKM=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "1dab772dd4a68a7bba5d9460685547ff8e17d899", "type": "github" }, "original": { @@ -77,7 +111,40 @@ "inputs": { "home-manager": "home-manager", "nixgl": "nixgl", - "nixpkgs": "nixpkgs" + "nixpkgs": "nixpkgs", + "st-flexipatch": "st-flexipatch" + } + }, + "st-flexipatch": { + "inputs": { + "flake-utils": "flake-utils_2", + "nixpkgs": "nixpkgs_2" + }, + "locked": { + "lastModified": 1736695856, + "narHash": "sha256-PgGC7fKqcyzizvbVv/5zf512F3+U7iMS1gDs1+O94I4=", + "rev": "0f0f929022f0426bcf349f49c82224d5ba116874", + "type": "tarball", + "url": "https://git.antoinevaure.fr/api/v1/repos/ant/st-flexipatch/archive/0f0f929022f0426bcf349f49c82224d5ba116874.tar.gz" + }, + "original": { + "type": "tarball", + "url": "https://git.antoinevaure.fr/ant/st-flexipatch/archive/master.zip" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" } } }, diff --git a/flake.nix b/flake.nix index 55af0a4..b888772 100644 --- a/flake.nix +++ b/flake.nix @@ -11,6 +11,7 @@ url = "github:nix-community/nixGL"; inputs.nixpkgs.follows = "nixpkgs"; }; + st-flexipatch.url = "https://git.antoinevaure.fr/ant/st-flexipatch/archive/master.zip"; }; outputs = { ... }@inputs: @@ -36,6 +37,9 @@ { home.packages = [ nixgl.nixGLIntel ]; } + { + home.packages = [ inputs.st-flexipatch.packages.${system}.st ]; + } ]; }; };