add shellc conf to server

This commit is contained in:
Satria 2026-03-06 21:06:05 +07:00
commit 590b3e0fea
2 changed files with 6 additions and 1 deletions

View file

@ -65,7 +65,7 @@
in { in {
nixosConfigurations = { nixosConfigurations = {
thinkpad = nixosConfigWithHome "thinkpad"; thinkpad = nixosConfigWithHome "thinkpad";
homelab = nixosConfig "homelab"; homelab = nixosConfigWithHome "homelab";
bootstrap = nixosConfig "bootstrap"; bootstrap = nixosConfig "bootstrap";
}; };
homeConfigurations = { homeConfigurations = {

5
hosts/homelab/home.nix Normal file
View file

@ -0,0 +1,5 @@
{ ... }: {
imports = [
../../modules/home
];
}