summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-11-15 15:13:52 +0100
committeradikro <adikro@disroot.org>2025-11-15 15:13:52 +0100
commit2a7dad74475f6afbd884df44cd49b694c3777490 (patch)
tree392b48f84a1576b80eba1194baf71df963cc23a3 /modules
parent4e3c8eff1407291ce64254d3eeed8de5f9677a0b (diff)
optimized boot times
Diffstat (limited to 'modules')
-rw-r--r--modules/networking.nix2
-rw-r--r--modules/virtualization.nix4
2 files changed, 4 insertions, 2 deletions
diff --git a/modules/networking.nix b/modules/networking.nix
index f33afa8..ad4ea26 100644
--- a/modules/networking.nix
+++ b/modules/networking.nix
@@ -1,6 +1,8 @@
{ ... }:
{
+ systemd.network.wait-online.enable = false;
+ boot.initrd.systemd.network.wait-online.enable = false;
networking = {
hostName = "szpont";
diff --git a/modules/virtualization.nix b/modules/virtualization.nix
index 2f7c54b..eea29f4 100644
--- a/modules/virtualization.nix
+++ b/modules/virtualization.nix
@@ -10,11 +10,11 @@
};
docker = {
- enable = true;
+ enable = false;
extraPackages = with pkgs; [ docker-compose ];
};
- containerd.enable = true;
+ containerd.enable = false;
};
programs.virt-manager.enable = true;