diff options
author | Viktor Kleen <viktor@kleen.org> | 2020-12-31 13:50:14 +0000 |
---|---|---|
committer | Viktor Kleen <viktor@kleen.org> | 2020-12-31 13:50:14 +0000 |
commit | 081ed0c82fa0a1e9b70df48c4c633df22232b815 (patch) | |
tree | 8d1207a38a744a212e35334fb61c2bc8449af7a7 | |
parent | 34cf32a834a3b6abf46643e4cc6bc1a0d5f2992d (diff) | |
download | nixos-081ed0c82fa0a1e9b70df48c4c633df22232b815.tar nixos-081ed0c82fa0a1e9b70df48c4c633df22232b815.tar.gz nixos-081ed0c82fa0a1e9b70df48c4c633df22232b815.tar.bz2 nixos-081ed0c82fa0a1e9b70df48c4c633df22232b815.tar.xz nixos-081ed0c82fa0a1e9b70df48c4c633df22232b815.zip |
add defaultTemplate output
-rw-r--r-- | flake.nix | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 | } |