mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-07 08:37:34 +08:00
7 lines
137 B
Nix
7 lines
137 B
Nix
{ flake, ... }: {
|
|
virtualisation.lxd.enable = true;
|
|
|
|
users.users.${flake.config.me.username} = {
|
|
extraGroups = [ "lxd" ];
|
|
};
|
|
}
|