From 43fbb0d77cf0c6078a43e4b1edebcde6c41474bc Mon Sep 17 00:00:00 2001 From: Tyler Mayoff Date: Mon, 7 Jul 2025 16:30:09 -0400 Subject: [PATCH] speed up boot times, for better hibernation experience --- dot_config/flake/machines/wash/configuration.nix | 7 +------ dot_config/flake/modules/nixos/boot.nix | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/dot_config/flake/machines/wash/configuration.nix b/dot_config/flake/machines/wash/configuration.nix index dfedc31..4b9dc26 100644 --- a/dot_config/flake/machines/wash/configuration.nix +++ b/dot_config/flake/machines/wash/configuration.nix @@ -27,12 +27,6 @@ }; }; - virtualisation.docker.enable = true; - virtualisation.docker.rootless = { - enable = true; - setSocketVariable = true; - }; - # Nix options nix.optimise.automatic = true; nix.settings.experimental-features = ["nix-command" "flakes"]; @@ -46,6 +40,7 @@ # Enable networking networking.networkmanager.enable = true; + systemd.services.NetworkManager-wait-online.enable = false; # Set your time zone. time.timeZone = "America/New_York"; diff --git a/dot_config/flake/modules/nixos/boot.nix b/dot_config/flake/modules/nixos/boot.nix index d9fd8b5..5881e7b 100644 --- a/dot_config/flake/modules/nixos/boot.nix +++ b/dot_config/flake/modules/nixos/boot.nix @@ -12,7 +12,7 @@ }; plymouth = { - enable = true; + enable = false; themePackages = [pkgs.catppuccin-plymouth]; theme = "catppuccin-macchiato"; };