mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-26 23:14:57 +08:00
7 lines
119 B
Nix
7 lines
119 B
Nix
{ pkgs, ... }: {
|
|
virtualisation.docker.enable = true;
|
|
|
|
users.users.srid = {
|
|
extraGroups = [ "docker" ];
|
|
};
|
|
}
|