aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-10 18:30:40 -0700
committerFuwn <[email protected]>2024-10-10 18:30:40 -0700
commitffb2b9af397cb096dd600b370156c8f27553503e (patch)
treecfe2a946e18de69e1ff096e8daf8ebdcfe1a915e /flake.nix
parentdocs(readme): add nix run binary cache information (diff)
downloadtsutsumi-ffb2b9af397cb096dd600b370156c8f27553503e.tar.xz
tsutsumi-ffb2b9af397cb096dd600b370156c8f27553503e.zip
feat(flake): add wiene
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index f9ea07b..10a993f 100644
--- a/flake.nix
+++ b/flake.nix
@@ -19,6 +19,7 @@
pre-commit-hooks,
rui,
self,
+ wiene,
...
}:
flake-utils.lib.eachDefaultSystem (
@@ -66,6 +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;
yaak = pkgs.callPackage ./pkgs/yaak.nix { };
zen-browser-bin = pkgs.callPackage ./pkgs/zen-browser-bin.nix { inherit pkgs self; };
@@ -159,5 +161,17 @@
nixpkgs.follows = "nixpkgs";
};
};
+
+ wiene = {
+ url = "github:Fuwn/wiene";
+
+ inputs = {
+ flake-compat.follows = "flake-compat";
+ flake-utils.follows = "flake-utils";
+ nixpkgs.follows = "nixpkgs";
+ pre-commit-hooks.follows = "pre-commit-hooks";
+ systems.follows = "systems";
+ };
+ };
};
}