summaryrefslogtreecommitdiff
path: root/systems/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-04 16:40:38 -0500
committerseth <[email protected]>2024-02-04 16:41:47 -0500
commit5f848623dff7cbcd21911032e5fd4c77bcf7d413 (patch)
tree7462ae7abec5beee71443702b330e3eeca1a407f /systems/default.nix
parent371235663a4e8d783dfc4294bb0b10cd3206c9c6 (diff)
tree-wide: better separate/name some things
Diffstat (limited to 'systems/default.nix')
-rw-r--r--systems/default.nix14
1 files changed, 1 insertions, 13 deletions
diff --git a/systems/default.nix b/systems/default.nix
index 964df12..e0fa49b 100644
--- a/systems/default.nix
+++ b/systems/default.nix
@@ -1,8 +1,4 @@
-{
- withSystem,
- inputs,
- ...
-}: {
+{inputs, ...}: {
imports = [./deploy.nix];
configurations = {
@@ -38,12 +34,4 @@
};
};
};
-
- flake.legacyPackages.x86_64-linux = withSystem "x86_64-linux" ({pkgs, ...}: {
- openWrtImages = {
- turret = pkgs.callPackage ./systems/turret {
- inherit (inputs) openwrt-imagebuilder;
- };
- };
- });
}