WIP: rewrite config #618

Draft
darkkirb wants to merge 345 commits from rewrite into main
2 changed files with 7 additions and 0 deletions
Showing only changes of commit f1b0f8304d - Show all commits

View file

@ -6,6 +6,7 @@
imports = [
nixos-config.nixosModules.default
./hostName.nix
./minimize.nix
];
networking.hostName = lib.mkOverride 1100 "container";

View file

@ -0,0 +1,6 @@
{nixpkgs, ...}: {
imports = [
(nixpkgs.outPath + "/nixos/modules/profiles/minimal.nix")
(nixpkgs.outPath + "/nixos/modules/profiles/headless.nix")
];
}