diff options
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | flake.lock | 14 | ||||
| -rw-r--r-- | flake.nix | 8 |
3 files changed, 12 insertions, 12 deletions
@@ -46,7 +46,7 @@ running `nix run github:Fuwn/tsutsumi#rui`. (or any other package in place of people that want to finish tasks, not organize them - [Thorium](https://thorium.rocks/) (`thorium`) - Fast and secure browser that uses modern CPU flags and LLVM optimizations -- [Wiene](https://github.com/Fuwn/wiene) (`wiene`) - Nix Dependency Manager +- [Yae](https://github.com/Fuwn/yae) (`yae`) - Nix Dependency Manager - [Yaak](https://yaak.app/) (`yaak`) - API client for modern developers - [Zen Browser](https://zen-browser.app/) (`zen-browser-bin`) - Firefox based browser with a focus on privacy and customisation (alpha release) @@ -240,7 +240,7 @@ "pre-commit-hooks": "pre-commit-hooks", "rui": "rui", "systems": "systems", - "wiene": "wiene" + "yae": "yae" } }, "rui": { @@ -290,7 +290,7 @@ "type": "github" } }, - "wiene": { + "yae": { "inputs": { "flake-compat": [ "flake-compat" @@ -309,16 +309,16 @@ ] }, "locked": { - "lastModified": 1728609919, - "narHash": "sha256-yx2NGX7fVKfP2plWdAe1ZyEVBabqrGwp02qoHZXsCIo=", + "lastModified": 1728619715, + "narHash": "sha256-z+fLlgux+ej4F8IS6gAtbSmYOyf4EKqTWUraHWgtFSU=", "owner": "Fuwn", - "repo": "wiene", - "rev": "a00423ae76a0ff235c3dc54edebcbbda11bfbb1e", + "repo": "yae", + "rev": "89a073b2e7590c2816c313567cf0ad4781e0ae0d", "type": "github" }, "original": { "owner": "Fuwn", - "repo": "wiene", + "repo": "yae", "type": "github" } } @@ -19,7 +19,7 @@ pre-commit-hooks, rui, self, - wiene, + yae, ... }: flake-utils.lib.eachDefaultSystem ( @@ -67,7 +67,7 @@ swaddle = pkgs.callPackage ./pkgs/swaddle.nix { }; t = pkgs.callPackage ./pkgs/t.nix { }; thorium = pkgs.callPackage ./pkgs/thorium.nix { }; - wiene = wiene.packages.${system}.default; + yae = yae.packages.${system}.default; yaak = pkgs.callPackage ./pkgs/yaak.nix { }; zen-browser-bin = pkgs.callPackage ./pkgs/zen-browser-bin.nix { inherit pkgs self; }; @@ -162,8 +162,8 @@ }; }; - wiene = { - url = "github:Fuwn/wiene"; + yae = { + url = "github:Fuwn/yae"; inputs = { flake-compat.follows = "flake-compat"; |