7 lines
120 B
Nix
7 lines
120 B
Nix
|
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
(modulesPath + "/virtualisation/lxc-container.nix")
|
||
|
];
|
||
|
}
|