feat(mottarone): add docker

This commit is contained in:
uku 2024-10-09 15:22:03 +02:00
parent 1e7125bf1a
commit e909d1e5bc
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
2 changed files with 3 additions and 1 deletions

View file

@ -197,7 +197,7 @@ in {
"${username}" = { "${username}" = {
isNormalUser = true; isNormalUser = true;
shell = pkgs.fish; shell = pkgs.fish;
extraGroups = ["networkmanager" "wheel" "video" "libvirtd" "input"]; extraGroups = ["networkmanager" "wheel" "video" "libvirtd" "input" "docker"];
hashedPasswordFile = secrets.get "userPassword"; hashedPasswordFile = secrets.get "userPassword";
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN+7+KfdOrhcnHayxvOENUeMx8rE4XEIV/AxMHiaNUP8" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN+7+KfdOrhcnHayxvOENUeMx8rE4XEIV/AxMHiaNUP8"

View file

@ -24,4 +24,6 @@
}; };
services.resolved.dnsovertls = lib.mkForce "false"; services.resolved.dnsovertls = lib.mkForce "false";
virtualisation.docker.enable = true;
} }