mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 09:01:16 +00:00
12 lines
183 B
Nix
12 lines
183 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
hostConfig,
|
|
lib,
|
|
...
|
|
}:
|
|
lib.mkIf hostConfig.isLinux {
|
|
home.packages = [
|
|
inputs.hermes-agent.packages.${pkgs.stdenv.hostPlatform.system}.default
|
|
];
|
|
}
|