summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 1b2758e7..3ad3d6c9 100644
--- a/flake.nix
+++ b/flake.nix
@@ -101,5 +101,10 @@
101 apps = recursiveUpdate activateNixosConfigurations activateHomeManagerConfigurations; 101 apps = recursiveUpdate activateNixosConfigurations activateHomeManagerConfigurations;
102 102
103 devShell = forAllSystems (system: systemPkgs: import ./shell.nix { pkgs = self.legacyPackages.${system}; }); 103 devShell = forAllSystems (system: systemPkgs: import ./shell.nix { pkgs = self.legacyPackages.${system}; });
104
105 defaultTemplate = {
106 path = ./.;
107 description = "A flakey nixos configuration.";
108 };
104 }; 109 };
105} 110}