23 lines
705 B
Nix
23 lines
705 B
Nix
|
{ ... }: {
|
||
|
# Docker is a utility to pack, ship and run any application as a lightweight
|
||
|
# container.
|
||
|
# https://nixos.wiki/wiki/Docker
|
||
|
|
||
|
virtualisation.docker = {
|
||
|
enable = true;
|
||
|
# Automatically `docker system prune` weekly
|
||
|
autoPrune.enable = true;
|
||
|
};
|
||
|
|
||
|
# Being a member of the docker group is effectively equivalent to being root,
|
||
|
# but without the annoyance of having to type your sudo password all the time.
|
||
|
users.extraGroups.docker.members = [ "caspervk" ];
|
||
|
|
||
|
# Persist docker volumes
|
||
|
environment.persistence."/nix/persist" = {
|
||
|
directories = [
|
||
|
# { directory = "/etc/NetworkManager/system-connections"; user = "root"; group = "root"; mode = "0700"; }
|
||
|
];
|
||
|
};
|
||
|
}
|