diff --git a/modules/home-manager.nix b/modules/home-manager.nix index 8249578..6d49cf2 100644 --- a/modules/home-manager.nix +++ b/modules/home-manager.nix @@ -29,7 +29,6 @@ in Service = { Type = "oneshot"; # TODO: should this be an async startup, to avoid blocking on network at boot ? ExecStart = import ./installer.nix { inherit cfg pkgs lib installation; }; - RemainAfterExit = "yes"; }; }; diff --git a/modules/nixos.nix b/modules/nixos.nix index cb7da6a..e057d98 100644 --- a/modules/nixos.nix +++ b/modules/nixos.nix @@ -16,7 +16,6 @@ in ]; serviceConfig = { Type = "oneshot"; # TODO: should this be an async startup, to avoid blocking on network at boot ? - RemainAfterExit = "yes"; ExecStart = import ./installer.nix { inherit cfg pkgs lib installation; }; }; };