From cb117564407a0e911a6dc8d373b243375b9828c2 Mon Sep 17 00:00:00 2001 From: Michael Utz Date: Fri, 8 May 2026 15:10:54 +0300 Subject: [PATCH] chore: update `vic` to `denful` --- README.md | 28 +++++++++---------- flake.lock | 12 ++++---- flake.nix | 8 +++--- modules/checkmate/dendritic.nix | 2 +- modules/checkmate/target.nix | 2 +- modules/flakeModule.nix | 2 +- templates/dendritic/checkmate/flake.lock | 16 +++++------ templates/dendritic/checkmate/flake.nix | 10 +++---- .../dendritic/checkmate/modules/checkmate.nix | 2 +- 9 files changed, 41 insertions(+), 41 deletions(-) diff --git a/README.md b/README.md index 9448085..48a00ad 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,15 @@

- Sponsor Vic + Sponsor Vic Dendritic Nix - License - - CI Status + License + + CI Status

# Checkmate - A Dendritic flake checker (treefmt & nix-unit) for testing other flakes with zero dependencies. -> `checkmate` and [vic](https://bsky.app/profile/oeiuwq.bsky.social)'s [dendritic libs](https://dendritic.oeiuwq.com) made for you with Love++ and AI--. If you like my work, consider [sponsoring](https://dendritic.oeiuwq.com/sponsor) +> `checkmate` and [denful](https://bsky.app/profile/oeiuwq.bsky.social)'s [dendritic libs](https://dendritic.oeiuwq.com) made for you with Love++ and AI--. If you like my work, consider [sponsoring](https://dendritic.oeiuwq.com/sponsor) ### Checks included by default @@ -25,23 +25,23 @@ Checkmate is a collection of Dendritic modules. ```shell # Generate a new project including github CI action -nix flake new -t github:vic/checkmate +nix flake new -t github:denful/checkmate ``` ### Running flake check locally ```console -nix flake check github:vic/checkmate --override-input target . +nix flake check github:denful/checkmate --override-input target . ``` ### Running treefmt on your code ```console # formatting your code -nix run github:vic/checkmate#fmt --override-input target . +nix run github:denful/checkmate#fmt --override-input target . # checking if code is formatted -nix run github:vic/checkmate#fmt --override-input target . -- --ci +nix run github:denful/checkmate#fmt --override-input target . -- --ci ``` ### CI Usage @@ -58,14 +58,14 @@ jobs: runs-on: ubuntu-latest steps: - uses: cachix/install-nix-action@v30 - - run: nix flake check -L github:vic/checkmate --override-input target github:$GITHUB_REPOSITORY/$GITHUB_SHA + - run: nix flake check -L github:denful/checkmate --override-input target github:$GITHUB_REPOSITORY/$GITHUB_SHA ``` ### Examples Some repos being tested with `checkmate`: -- https://github.com/vic/checkmate -- https://github.com/vic/import-tree -- https://github.com/vic/flake-aspects -- https://github.com/vic/den +- https://github.com/denful/checkmate +- https://github.com/denful/import-tree +- https://github.com/denful/flake-aspects +- https://github.com/denful/den diff --git a/flake.lock b/flake.lock index 91e76b4..77d40b6 100644 --- a/flake.lock +++ b/flake.lock @@ -4,13 +4,13 @@ "locked": { "lastModified": 1763763269, "narHash": "sha256-i49Qkjy5TD5IPOp7lcqD5Bh47+FCFnJHNfn/Di/ysYU=", - "owner": "vic", + "owner": "denful", "repo": "flake-file", "rev": "af92ed37624496a435da68e5597f9a6593cdf0c4", "type": "github" }, "original": { - "owner": "vic", + "owner": "denful", "repo": "flake-file", "type": "github" } @@ -39,13 +39,13 @@ "locked": { "lastModified": 1763762820, "narHash": "sha256-ZvYKbFib3AEwiNMLsejb/CWs/OL/srFQ8AogkebEPF0=", - "owner": "vic", + "owner": "denful", "repo": "import-tree", "rev": "3c23749d8013ec6daa1d7255057590e9ca726646", "type": "github" }, "original": { - "owner": "vic", + "owner": "denful", "repo": "import-tree", "type": "github" } @@ -147,14 +147,14 @@ "dir": "templates/success", "lastModified": 1763765355, "narHash": "sha256-qMSEXAsyQT5iBHpYZnMHankHUkrdbd2U/UsDcvZJAto=", - "owner": "vic", + "owner": "denful", "repo": "checkmate", "rev": "36b954de1c4abd4fc9a73212e8b2cfacfe0b31a4", "type": "github" }, "original": { "dir": "templates/success", - "owner": "vic", + "owner": "denful", "repo": "checkmate", "type": "github" } diff --git a/flake.nix b/flake.nix index d07b407..44363c2 100644 --- a/flake.nix +++ b/flake.nix @@ -1,16 +1,16 @@ -# DO-NOT-EDIT. This file was auto-generated using github:vic/flake-file. +# DO-NOT-EDIT. This file was auto-generated using github:denful/flake-file. # Use `nix run .#write-flake` to regenerate it. { outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules); inputs = { - flake-file.url = "github:vic/flake-file"; + flake-file.url = "github:denful/flake-file"; flake-parts = { inputs.nixpkgs-lib.follows = "nixpkgs-lib"; url = "github:hercules-ci/flake-parts"; }; - import-tree.url = "github:vic/import-tree"; + import-tree.url = "github:denful/import-tree"; nix-unit = { inputs = { flake-parts.follows = "flake-parts"; @@ -21,7 +21,7 @@ nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; nixpkgs-lib.follows = "nixpkgs"; systems.url = "github:nix-systems/default"; - target.url = "github:vic/checkmate?dir=templates/success"; + target.url = "github:denful/checkmate?dir=templates/success"; treefmt-nix = { inputs.nixpkgs.follows = "nixpkgs"; url = "github:numtide/treefmt-nix"; diff --git a/modules/checkmate/dendritic.nix b/modules/checkmate/dendritic.nix index eb2955e..5cf8848 100644 --- a/modules/checkmate/dendritic.nix +++ b/modules/checkmate/dendritic.nix @@ -1,6 +1,6 @@ { inputs, lib, ... }: { - flake-file.inputs.flake-file.url = lib.mkDefault "github:vic/flake-file"; + flake-file.inputs.flake-file.url = lib.mkDefault "github:denful/flake-file"; imports = [ (inputs.flake-file.flakeModules.dendritic or { }) ]; diff --git a/modules/checkmate/target.nix b/modules/checkmate/target.nix index 8b05c47..37f0d09 100644 --- a/modules/checkmate/target.nix +++ b/modules/checkmate/target.nix @@ -1,4 +1,4 @@ { lib, ... }: { - flake-file.inputs.target.url = lib.mkDefault "github:vic/checkmate?dir=templates/success"; + flake-file.inputs.target.url = lib.mkDefault "github:denful/checkmate?dir=templates/success"; } diff --git a/modules/flakeModule.nix b/modules/flakeModule.nix index 513f244..c86fd88 100644 --- a/modules/flakeModule.nix +++ b/modules/flakeModule.nix @@ -9,7 +9,7 @@ ]; flake-file.inputs.checkmate = { - url = lib.mkDefault "github:vic/checkmate"; + url = lib.mkDefault "github:denful/checkmate"; inputs = { flake-file.follows = "flake-file"; flake-parts.follows = "flake-parts"; diff --git a/templates/dendritic/checkmate/flake.lock b/templates/dendritic/checkmate/flake.lock index 6f41e88..86590a5 100644 --- a/templates/dendritic/checkmate/flake.lock +++ b/templates/dendritic/checkmate/flake.lock @@ -33,13 +33,13 @@ "locked": { "lastModified": 1763765355, "narHash": "sha256-qMSEXAsyQT5iBHpYZnMHankHUkrdbd2U/UsDcvZJAto=", - "owner": "vic", + "owner": "denful", "repo": "checkmate", "rev": "36b954de1c4abd4fc9a73212e8b2cfacfe0b31a4", "type": "github" }, "original": { - "owner": "vic", + "owner": "denful", "repo": "checkmate", "type": "github" } @@ -48,13 +48,13 @@ "locked": { "lastModified": 1763763269, "narHash": "sha256-i49Qkjy5TD5IPOp7lcqD5Bh47+FCFnJHNfn/Di/ysYU=", - "owner": "vic", + "owner": "denful", "repo": "flake-file", "rev": "af92ed37624496a435da68e5597f9a6593cdf0c4", "type": "github" }, "original": { - "owner": "vic", + "owner": "denful", "repo": "flake-file", "type": "github" } @@ -83,13 +83,13 @@ "locked": { "lastModified": 1763762820, "narHash": "sha256-ZvYKbFib3AEwiNMLsejb/CWs/OL/srFQ8AogkebEPF0=", - "owner": "vic", + "owner": "denful", "repo": "import-tree", "rev": "3c23749d8013ec6daa1d7255057590e9ca726646", "type": "github" }, "original": { - "owner": "vic", + "owner": "denful", "repo": "import-tree", "type": "github" } @@ -192,14 +192,14 @@ "dir": "templates/dendritic", "lastModified": 1763765355, "narHash": "sha256-qMSEXAsyQT5iBHpYZnMHankHUkrdbd2U/UsDcvZJAto=", - "owner": "vic", + "owner": "denful", "repo": "checkmate", "rev": "36b954de1c4abd4fc9a73212e8b2cfacfe0b31a4", "type": "github" }, "original": { "dir": "templates/dendritic", - "owner": "vic", + "owner": "denful", "repo": "checkmate", "type": "github" } diff --git a/templates/dendritic/checkmate/flake.nix b/templates/dendritic/checkmate/flake.nix index 24c9427..accf59d 100644 --- a/templates/dendritic/checkmate/flake.nix +++ b/templates/dendritic/checkmate/flake.nix @@ -1,4 +1,4 @@ -# DO-NOT-EDIT. This file was auto-generated using github:vic/flake-file. +# DO-NOT-EDIT. This file was auto-generated using github:denful/flake-file. # Use `nix run .#write-flake` to regenerate it. { @@ -17,14 +17,14 @@ target.follows = "target"; treefmt-nix.follows = "treefmt-nix"; }; - url = "github:vic/checkmate"; + url = "github:denful/checkmate"; }; - flake-file.url = "github:vic/flake-file"; + flake-file.url = "github:denful/flake-file"; flake-parts = { inputs.nixpkgs-lib.follows = "nixpkgs-lib"; url = "github:hercules-ci/flake-parts"; }; - import-tree.url = "github:vic/import-tree"; + import-tree.url = "github:denful/import-tree"; nix-unit = { inputs = { flake-parts.follows = "flake-parts"; @@ -35,7 +35,7 @@ nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; nixpkgs-lib.follows = "nixpkgs"; systems.url = "github:nix-systems/default"; - target.url = "github:vic/checkmate?dir=templates/dendritic"; + target.url = "github:denful/checkmate?dir=templates/dendritic"; treefmt-nix = { inputs.nixpkgs.follows = "nixpkgs"; url = "github:numtide/treefmt-nix"; diff --git a/templates/dendritic/checkmate/modules/checkmate.nix b/templates/dendritic/checkmate/modules/checkmate.nix index fa56086..7a1b8de 100644 --- a/templates/dendritic/checkmate/modules/checkmate.nix +++ b/templates/dendritic/checkmate/modules/checkmate.nix @@ -1,5 +1,5 @@ { inputs, ... }: { - flake-file.inputs.target.url = "github:vic/checkmate?dir=templates/dendritic"; + flake-file.inputs.target.url = "github:denful/checkmate?dir=templates/dendritic"; imports = [ (inputs.checkmate.flakeModule or { }) ]; }