mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-27 07:36:27 +08:00
7 lines
145 B
Nix
7 lines
145 B
Nix
{ flake, ... }: {
|
|
virtualisation.docker.enable = true;
|
|
|
|
users.users.${flake.config.people.myself} = {
|
|
extraGroups = [ "docker" ];
|
|
};
|
|
}
|