Skip to content

Commit

Permalink
nixos: home-manager: remove RemainAfterExit
Browse files Browse the repository at this point in the history
This is not really needed, since state changes
will be handled by a timer.
  • Loading branch information
gmodena committed Feb 14, 2024
1 parent 04d4446 commit d18c064
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion modules/home-manager.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
};
};

Expand Down
1 change: 0 additions & 1 deletion modules/nixos.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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; };
};
};
Expand Down

0 comments on commit d18c064

Please sign in to comment.