diff --git a/.config/linux/system/home/Configuration.nix b/.config/linux/system/home/Configuration.nix index 30cf5f7..74c7e3d 100644 --- a/.config/linux/system/home/Configuration.nix +++ b/.config/linux/system/home/Configuration.nix @@ -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"; }