diff --git a/templates/flake-parts/flake.nix b/templates/flake-parts/flake.nix index 05dcb6749..c2c8a54e9 100644 --- a/templates/flake-parts/flake.nix +++ b/templates/flake-parts/flake.nix @@ -30,9 +30,6 @@ # module parameters provide easy access to attributes of the same # system. - # needed for devenv up - packages.devenv-up = self'.devShells.default.config.procfileScript; - # Equivalent to inputs'.nixpkgs.legacyPackages.hello; packages.default = pkgs.hello; @@ -57,6 +54,8 @@ enterShell = '' hello ''; + + processes.hello.exec = "hello"; }; }; diff --git a/templates/simple/flake.nix b/templates/simple/flake.nix index 303f4afec..1cd10286b 100644 --- a/templates/simple/flake.nix +++ b/templates/simple/flake.nix @@ -37,7 +37,7 @@ hello ''; - processes.run.exec = "hello"; + processes.hello.exec = "hello"; } ]; };