feat: multi-machine structure + gruvbox theme + kitty + zsh modules

This commit is contained in:
2026-03-03 21:36:20 +01:00
parent 3c8910ccc7
commit 9cc94a8385
9 changed files with 195 additions and 1 deletions
+22 -1
View File
@@ -20,10 +20,31 @@
in
{
homeConfigurations = {
"ayman@archThinkpad" = mkHome {
system = "x86_64-linux";
modules = [ ./home/base.nix ];
modules = [
./home/base.nix
./home/profiles/notebook.nix
];
};
"ayman@desktop" = mkHome {
system = "x86_64-linux";
modules = [
./home/base.nix
./home/profiles/desktop.nix
];
};
"ayman@homelab-01" = mkHome {
system = "x86_64-linux";
modules = [
./home/base.nix
./home/profiles/server.nix
];
};
};
};
}