mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-27 15:54:58 +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" ];
|
|
};
|
|
}
|