added docker rootless for pardinus

Changed files
+10
hosts
pardinus
modules
+1
hosts/pardinus/default.nix
··· 29 29 extraGroups = [ 30 30 "wheel" 31 31 "tss" 32 + "docker" 32 33 ]; 33 34 hashedPassword = "$6$rounds=4096$048E1JljebjSdlsY$rDwVNrrNj.bG6JPKoe/K3PxPj3P5K3xnlvICk5gEhwGxFMYoH/APNlKDbNHHc/cPP1KbtDd2oYxqWwVxYDAAE1"; 34 35 shell = pkgs.nushell;
+9
modules/server.nix
··· 49 49 PasswordAuthentication = false; 50 50 }; 51 51 }; 52 + 52 53 networking.firewall.allowedTCPPorts = [ 22 ]; 54 + 55 + virtualization.docker = { 56 + storageDriver = "btrfs"; 57 + rootless = { 58 + enable = true; 59 + setSocketVariable = true; 60 + }; 61 + }; 53 62 }