We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb76d5b commit 3cf289dCopy full SHA for 3cf289d
1 file changed
flake.nix
@@ -18,10 +18,6 @@
18
}
19
);
20
21
- devShells = eachSystem (system: {
22
- default = self.legacyPackages.${system}.fromTOML ./devshell.toml;
23
- });
24
-
25
templates = rec {
26
toml = {
27
path = ./templates/toml;
@@ -33,6 +29,15 @@
33
29
};
34
30
default = toml;
35
31
32
+
+ devShells = eachSystem (system: {
+ default = self.legacyPackages.${system}.fromTOML ./devshell.toml;
+ });
36
37
+ apps = eachSystem (system: {
38
+ default = self.devShells.${system}.default.flakeApp;
39
40
41
# Import this overlay into your instance of nixpkgs
42
overlays.default = import ./overlay.nix;
43
lib = {
0 commit comments