diff options
| author | Fuwn <[email protected]> | 2024-10-11 15:42:24 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-11 15:42:24 -0700 |
| commit | 039faa06e5d8ae2e2343b6ac764f0350b0ec880c (patch) | |
| tree | b932e719a214ea94c01cc816bcedf6a56bda473e /flake.nix | |
| parent | refactor(flake): move rui to yae environment (diff) | |
| download | tsutsumi-039faa06e5d8ae2e2343b6ac764f0350b0ec880c.tar.xz tsutsumi-039faa06e5d8ae2e2343b6ac764f0350b0ec880c.zip | |
refactor(flake): move maple and mayu to yae environment
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 38 |
1 files changed, 13 insertions, 25 deletions
@@ -13,8 +13,8 @@ { flake-utils, gigi, - maple, - mayu, + gitignore, + nix-gleam, nixpkgs, pre-commit-hooks, self, @@ -54,6 +54,8 @@ ((import "${archive}/flake.nix").outputs { inherit flake-utils + gitignore + nix-gleam nixpkgs pre-commit-hooks ; @@ -74,8 +76,8 @@ code-stats-ls = pkgs.callPackage ./pkgs/code-stats-ls.nix { }; gigi = gigi.packages.${system}.default; git-sumi = pkgs.callPackage ./pkgs/git-sumi.nix { }; - maple = maple.packages.${system}.default; - mayu = mayu.packages.${system}.default; + maple = yaePackage "maple"; + mayu = yaePackage "mayu"; html2md = pkgs.callPackage ./pkgs/html2md.nix { }; lilipod = pkgs.callPackage ./pkgs/lilipod.nix { }; private-internet-access = pkgs.callPackage ./pkgs/private-internet-access.nix { }; @@ -118,6 +120,7 @@ ); inputs = { + nix-gleam.url = "github:arnarg/nix-gleam"; nixpkgs.url = "github:NixOS/nixpkgs"; systems.url = "github:nix-systems/default"; @@ -131,15 +134,6 @@ inputs.systems.follows = "systems"; }; - pre-commit-hooks = { - url = "github:cachix/git-hooks.nix"; - - inputs = { - flake-compat.follows = "flake-compat"; - nixpkgs.follows = "nixpkgs"; - }; - }; - gigi = { url = "github:Fuwn/gigi"; @@ -150,22 +144,16 @@ }; }; - maple = { - url = "github:gemrest/maple"; - - inputs = { - flake-compat.follows = "flake-compat"; - flake-utils.follows = "flake-utils"; - nixpkgs.follows = "nixpkgs"; - systems.follows = "systems"; - }; + gitignore = { + url = "github:hercules-ci/gitignore.nix"; + inputs.nixpkgs.follows = "nixpkgs"; }; - mayu = { - url = "github:Fuwn/mayu"; + pre-commit-hooks = { + url = "github:cachix/git-hooks.nix"; inputs = { - flake-utils.follows = "flake-utils"; + flake-compat.follows = "flake-compat"; nixpkgs.follows = "nixpkgs"; }; }; |