summaryrefslogtreecommitdiff
path: root/systems/nixinate.nix
diff options
context:
space:
mode:
Diffstat (limited to 'systems/nixinate.nix')
-rw-r--r--systems/nixinate.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/systems/nixinate.nix b/systems/nixinate.nix
deleted file mode 100644
index b67cea3..0000000
--- a/systems/nixinate.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ inputs, self, ... }:
-{
- perSystem =
- { system, ... }:
- {
- # as opposed to having system specific outputs like `apps.nixinate.mySystem`
- # we can instantiate this for each system and grab it's final attribute, `nixinate`
- #
- # this lets deployments be as easy as `nix run .#mySystem`
- apps = (inputs.nixinate.nixinate.${system} self).nixinate;
- };
-}