enable docker on server

This commit is contained in:
Joeri Exelmans 2025-09-27 09:23:09 +02:00
parent 9a89708fb1
commit 21d60bd185

View file

@ -131,7 +131,7 @@ let secrets = import ../secrets.nix; in
users.users.maestro = { users.users.maestro = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable sudo for the user. extraGroups = [ "wheel" "docker" ]; # Enable sudo for the user.
}; };
programs.gnupg.agent = { programs.gnupg.agent = {
@ -360,6 +360,10 @@ let secrets = import ../secrets.nix; in
# UPnP media playback (local network only) # UPnP media playback (local network only)
services.gnome.rygel.enable = true; services.gnome.rygel.enable = true;
virtualisation.docker = {
enable = true;
};
# This value determines the NixOS release from which the default # This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions # settings for stateful data, like file locations and database versions