Files
nixos-config/home/m3tam3re/m3-hermes.nix
T

31 lines
474 B
Nix
Raw Normal View History

# m3-hermes — secondary server.
# Context: server | Profiles: (none)
2026-04-07 06:19:05 +02:00
{
lib,
...
}:
let
homeLib = import ../lib { inherit lib; };
in {
2026-04-07 06:19:05 +02:00
imports = [
(homeLib.mkHomeConfig {
profiles = [ ];
context = "server";
})
2026-04-07 06:19:05 +02:00
./home-server.nix
];
# Base CLI tools (new namespace)
base = {
shell = {
fish.enable = true;
2026-04-07 06:19:05 +02:00
starship.enable = true;
};
cliTools = {
fzf.enable = true;
nitch.enable = true;
};
2026-04-07 06:19:05 +02:00
};
2026-04-07 06:19:05 +02:00
}