• Migrates configuration files from 'common' to 'global' • Updates import paths across modules • Removes outdated macOS configuration • Adds user configuration files WIP
14 lines
223 B
Nix
14 lines
223 B
Nix
{ pkgs, ... }:
|
|
{
|
|
virtualisation = {
|
|
docker = {
|
|
enable = true;
|
|
autoPrune.enable = true;
|
|
};
|
|
oci-containers.backend = "docker";
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
lazydocker
|
|
];
|
|
}
|