Skip to content

Commit

Permalink
Fix post-resume notification
Browse files Browse the repository at this point in the history
  • Loading branch information
rake5k committed Jan 16, 2025
1 parent bb32f33 commit c079c6d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions nixos/roles/nas/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,15 @@ in
};
};

# Fix post-resume service failing with status `6/NOTCONFIGURED`
systemd.services.post-resume = {
after = [
"network.target"
"network-online.target"
];
wants = [ "network-online.target" ];
};

services.glances = {
enable = true;
openFirewall = true;
Expand Down

0 comments on commit c079c6d

Please sign in to comment.