diff --git a/modules/hosts/janus/default.nix b/modules/hosts/janus/default.nix index 15e9734..73b56e9 100644 --- a/modules/hosts/janus/default.nix +++ b/modules/hosts/janus/default.nix @@ -95,13 +95,6 @@ in ]; }; - flake-file.inputs = { - wrappers = { - url = "github:lassulus/wrappers"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - }; - perSystem = { system, pkgs, lib, ... }: { packages.janus-ca = inputs.wrappers.lib.wrapPackage { inherit pkgs; diff --git a/modules/nix-tools/wrappers.nix b/modules/nix-tools/wrappers.nix new file mode 100644 index 0000000..16533b0 --- /dev/null +++ b/modules/nix-tools/wrappers.nix @@ -0,0 +1,12 @@ +{ self, inputs, ... }: { + flake-file.inputs = { + wrapper-modules = { + url = "github:BirdeeHub/nix-wrapper-modules"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + wrappers = { + url = "github:lassulus/wrappers"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + }; +} \ No newline at end of file