Home : Disable Docker autostart.
This commit is contained in:
parent
36061b4d78
commit
faa762401d
|
@ -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";
|
||||
}
|
||||
|
|
Reference in a new issue