mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-06 13:06:35 +05:30
8 lines
130 B
Nix
Executable File
8 lines
130 B
Nix
Executable File
{ username, ... }: {
|
|
virtualisation = {
|
|
docker.enable = true;
|
|
};
|
|
|
|
users.users.${username}.extraGroups = [ "docker" ];
|
|
}
|