mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
14 lines
261 B
Nix
14 lines
261 B
Nix
{ pkgs, lib, config, ... }: {
|
|
|
|
# https://nixos.wiki/wiki/Docker
|
|
environment.systemPackages = with pkgs; [ docker-compose ];
|
|
|
|
virtualisation.docker = {
|
|
enable = true;
|
|
rootless = {
|
|
enable = true;
|
|
setSocketVariable = true;
|
|
};
|
|
};
|
|
|
|
}
|