summaryrefslogtreecommitdiff
path: root/systems/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'systems/default.nix')
-rw-r--r--systems/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/systems/default.nix b/systems/default.nix
index 47f6bf6..bdfaee0 100644
--- a/systems/default.nix
+++ b/systems/default.nix
@@ -28,8 +28,6 @@
mapNixOS = mapSystems inputs.nixpkgs.lib.nixosSystem;
inherit (import ./common.nix {inherit inputs self;}) darwin nixos server;
in {
- imports = [./deploy.nix];
-
flake = {
darwinConfigurations = mapDarwin {
caroline = {
@@ -78,4 +76,8 @@ in {
inherit (inputs) openwrt-imagebuilder;
});
};
+
+ perSystem = {system, ...}: {
+ apps = (inputs.nixinate.nixinate.${system} self).nixinate;
+ };
}