nixos-config/modules/containers/minimize.nix

9 lines
255 B
Nix
Raw Normal View History

2024-11-09 14:02:26 +00:00
{ nixpkgs, ... }:
{
2024-10-29 06:37:10 +00:00
imports = [
(nixpkgs.outPath + "/nixos/modules/profiles/minimal.nix")
(nixpkgs.outPath + "/nixos/modules/profiles/headless.nix")
];
2024-10-29 07:09:53 +00:00
nix.enable = false; # We dont need the nix package manager inside of the container.
2024-10-29 06:37:10 +00:00
}