System/modules/lxc.nix

12 lines
179 B
Nix
Raw Normal View History

2022-05-25 12:50:09 -04:00
{ config, lib, pkgs, ... }:
{
virtualisation.lxd = {
enable = true;
recommendedSysctlSettings = true;
};
users.users.nathan = {
extraGroups = [ "lxd" ];
};
}