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 don’t need the nix package manager inside of the container.
|
2024-10-29 06:37:10 +00:00
|
|
|
|
}
|