make a bootstrap base config

This commit is contained in:
Satria 2026-02-28 19:12:41 +07:00
commit eea20f2363
5 changed files with 52 additions and 3 deletions

View file

@ -49,10 +49,22 @@
}
];
};
homeConfig = host: inputs.hm.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
./hosts/${host}/home.nix
inputs.ctp.homeModules.catppuccin
];
};
in {
nixosConfigurations = {
thinkpad = nixosConfigWithHome "thinkpad";
homelab = nixosConfig "homelab";
bootstrap = nixosConfig "bootstrap";
};
homeConfigurations = {
bootstrap = homeConfig "bootstrap";
};
};
}