summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-04-23 07:21:23 -0400
committerseth <[email protected]>2023-04-23 07:21:23 -0400
commit07af751ba8cccf8009cf3586f07d746141f2ebab (patch)
treed1ce4adf95ffb299696837385eb99b8310122d2d /flake.nix
parentb4e31ae959e612771f411bd4f9ee05ad16ac8d19 (diff)
add nixinate
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 4779da6..4f7a448 100644
--- a/flake.nix
+++ b/flake.nix
@@ -53,6 +53,10 @@
# TODO: ditto
inputs.rust-overlay.follows = "rust-overlay";
};
+ nixinate = {
+ url = "github:MatthewCroughan/nixinate";
+ inputs.nixpkgs.follows = "nixpkgsUnstable";
+ };
nixos-wsl = {
url = "github:nix-community/NixOS-WSL/main";
inputs.nixpkgs.follows = "nixpkgs";
@@ -81,6 +85,7 @@
haumea,
getchoo,
flake-utils,
+ nixinate,
openwrt-imagebuilder,
pre-commit-hooks,
...
@@ -102,6 +107,7 @@
eachDefaultSystem (system: let
pkgs = import nixpkgs {inherit system;};
in {
+ apps = nixinate.nixinate.${system} self;
checks = {
pre-commit-check = pre-commit-hooks.lib.${system}.run {
src = ./.;