aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-19 19:05:12 -0700
committerFuwn <[email protected]>2024-09-19 19:05:12 -0700
commit5db7ce681e420f5c870c0b92f7da90968f21269a (patch)
tree9a2b87db6c4364730ffe93597bec6d2da113ea50 /flake.nix
parentfeat(pkgs): bump rui (diff)
downloadtsutsumi-5db7ce681e420f5c870c0b92f7da90968f21269a.tar.xz
tsutsumi-5db7ce681e420f5c870c0b92f7da90968f21269a.zip
chore(flake): unify input inputs
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix22
1 files changed, 18 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index 4a4b53e..0bfe388 100644
--- a/flake.nix
+++ b/flake.nix
@@ -4,7 +4,11 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
systems.url = "github:nix-systems/default";
- flake-compat.url = "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz";
+
+ flake-compat = {
+ url = "github:edolstra/flake-compat";
+ flake = false;
+ };
flake-utils = {
url = "github:numtide/flake-utils";
@@ -13,13 +17,23 @@
pre-commit-hooks = {
url = "github:cachix/git-hooks.nix";
- inputs.nixpkgs.follows = "nixpkgs";
+
+ inputs = {
+ flake-compat.follows = "flake-compat";
+ nixpkgs.follows = "nixpkgs";
+ };
};
rui = {
url = "github:Fuwn/rui";
- inputs.nixpkgs.follows = "nixpkgs";
- inputs.systems.follows = "systems";
+
+ inputs = {
+ flake-compat.follows = "flake-compat";
+ flake-utils.follows = "flake-utils";
+ nixpkgs.follows = "nixpkgs";
+ pre-commit-hooks.follows = "pre-commit-hooks";
+ systems.follows = "systems";
+ };
};
};