WIP: rewrite config #618
2 changed files with 7 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
imports = [
|
||||
nixos-config.nixosModules.default
|
||||
./hostName.nix
|
||||
./minimize.nix
|
||||
];
|
||||
|
||||
networking.hostName = lib.mkOverride 1100 "container";
|
||||
|
|
6
modules/containers/minimize.nix
Normal file
6
modules/containers/minimize.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{nixpkgs, ...}: {
|
||||
imports = [
|
||||
(nixpkgs.outPath + "/nixos/modules/profiles/minimal.nix")
|
||||
(nixpkgs.outPath + "/nixos/modules/profiles/headless.nix")
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue