summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViktor Kleen <viktor@kleen.org>2020-12-31 13:50:14 +0000
committerViktor Kleen <viktor@kleen.org>2020-12-31 13:50:14 +0000
commit081ed0c82fa0a1e9b70df48c4c633df22232b815 (patch)
tree8d1207a38a744a212e35334fb61c2bc8449af7a7
parent34cf32a834a3b6abf46643e4cc6bc1a0d5f2992d (diff)
downloadnixos-081ed0c82fa0a1e9b70df48c4c633df22232b815.tar
nixos-081ed0c82fa0a1e9b70df48c4c633df22232b815.tar.gz
nixos-081ed0c82fa0a1e9b70df48c4c633df22232b815.tar.bz2
nixos-081ed0c82fa0a1e9b70df48c4c633df22232b815.tar.xz
nixos-081ed0c82fa0a1e9b70df48c4c633df22232b815.zip
add defaultTemplate output
-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}