diff --git a/flake.nix b/flake.nix index 3659681..f2b1e3a 100644 --- a/flake.nix +++ b/flake.nix @@ -35,6 +35,13 @@ update = zmk-nix.packages.${system}.update; }); + apps = forAllSystems (system: { + default = { + type = "app"; + program = "${nixpkgs.lib.getExe self.packages.${system}.flash}"; + }; + }); + devShells = forAllSystems (system: { default = zmk-nix.devShells.${system}.default; });