Home : Disable Docker autostart.

This commit is contained in:
Dmitry Voronin 2024-01-26 00:54:06 +03:00
parent 36061b4d78
commit faa762401d

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
imports = [
@ -36,9 +36,13 @@
fileSystems."/storage/hot" = {
device = "/dev/storage/hot";
fsType = "ext4";
options = [ "nofail" ];
options = [ "noauth" "nofail" ];
};
# Disable Docker autostart.
systemd.services.docker.wantedBy = lib.mkForce [ ];
systemd.sockets.docker.wantedBy = lib.mkForce [ ];
# Do not touch ever.
system.stateVersion = "23.11";
}