summaryrefslogtreecommitdiff
path: root/flake/configs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake/configs.nix')
-rw-r--r--flake/configs.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/flake/configs.nix b/flake/configs.nix
deleted file mode 100644
index 9660616..0000000
--- a/flake/configs.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- inputs,
- self,
- ...
-}: let
- inherit (inputs) nixinate openwrt-imagebuilder;
- inherit ((inputs.getchoo.lib inputs).configs) mapHMUsers mapHosts;
-in {
- flake = {
- nixosConfigurations = mapHosts ../hosts;
-
- nixosModules.getchoo = import ../modules;
- };
-
- perSystem = {
- pkgs,
- system,
- ...
- }: {
- apps = (nixinate.nixinate.${system} self).nixinate;
-
- legacyPackages.homeConfigurations = mapHMUsers system ../users;
-
- packages = {
- turret = pkgs.callPackage ../hosts/_turret {inherit openwrt-imagebuilder;};
- };
- };
-}