aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix17
1 files changed, 14 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index ffe6675..8fedec4 100644
--- a/flake.nix
+++ b/flake.nix
@@ -47,16 +47,26 @@
systems.follows = "systems";
};
};
+
+ mayu = {
+ url = "github:Fuwn/mayu";
+
+ inputs = {
+ flake-utils.follows = "flake-utils";
+ nixpkgs.follows = "nixpkgs";
+ };
+ };
};
outputs =
{
- self,
- nixpkgs,
flake-utils,
+ gigi,
+ mayu,
+ nixpkgs,
pre-commit-hooks,
rui,
- gigi,
+ self,
...
}:
flake-utils.lib.eachDefaultSystem (
@@ -87,6 +97,7 @@
code-stats-ls = pkgs.callPackage ./pkgs/code-stats-ls.nix { };
gigi = gigi.packages.${system}.default;
git-sumi = pkgs.callPackage ./pkgs/git-sumi.nix { };
+ mayu = mayu.packages.${system}.default;
private-internet-access = pkgs.callPackage ./pkgs/private-internet-access.nix { };
rui = rui.packages.${system}.default;
swaddle = pkgs.callPackage ./pkgs/swaddle.nix { };