23 lines
398 B
Nix
23 lines
398 B
Nix
|
{ modulesPath, config, pkgs, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
"${modulesPath}/virtualisation/lxc-container.nix"
|
||
|
];
|
||
|
|
||
|
boot.isContainer = true;
|
||
|
|
||
|
systemd.suppressedSystemUnits = [
|
||
|
"dev-mqueue.mount"
|
||
|
"sys-kernel-debug.mount"
|
||
|
"sys-fs-fuse-connections.mount"
|
||
|
];
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
openssh
|
||
|
binutils
|
||
|
man
|
||
|
git
|
||
|
];
|
||
|
|
||
|
programs.nix-ld.enable = true;
|
||
|
}
|