Skip to content

Commit

Permalink
nixos: disable network manager wait
Browse files Browse the repository at this point in the history
  • Loading branch information
appaquet committed Jan 15, 2025
1 parent c90646d commit c597d2d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions nixos/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
];
};
programs.fish.enable = true;
security.sudo.enable = true;
security.sudo.wheelNeedsPassword = true;

# Allow running external dynamically binaries
# nix-ld replaces interpreter and automatically link with nix libs
Expand All @@ -63,7 +65,7 @@
# Run fstrim weekly
services.fstrim.enable = true;

# Networking
services.tailscale.enable = true;
security.sudo.enable = true;
security.sudo.wheelNeedsPassword = true;
systemd.services.NetworkManager-wait-online.enable = false; # cause more issues than it solves
}

0 comments on commit c597d2d

Please sign in to comment.