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

26 lines
464 B
Nix
Raw Normal View History

# m3-hermes — secondary server.
# Context: server | Profiles: (none)
{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
};
}