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

26 lines
487 B
Nix
Raw Normal View History

# m3-helios — AdGuard DNS and internal routing server.
# Context: server | Profiles: (none)
{lib, ...}: let
homeLib = import ../lib {inherit lib;};
in {
2024-11-16 19:58:59 +01:00
imports = [
(homeLib.mkHomeConfig {
profiles = [];
context = "server";
})
2024-11-16 19:58:59 +01:00
./home-server.nix
];
# Base CLI tools (new namespace)
base = {
shell = {
fish.enable = true;
2024-11-16 19:58:59 +01:00
starship.enable = true;
};
cliTools = {
fzf.enable = true;
nitch.enable = true;
};
2024-11-16 19:58:59 +01:00
};
}