10 lines
283 B
Nix
10 lines
283 B
Nix
|
|
#./apps/helium.nix
|
||
|
|
{ inputs, pkgs, lib, config, ... }:
|
||
|
|
{
|
||
|
|
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) {
|
||
|
|
environment.systemPackages = [
|
||
|
|
inputs.helium-browser.packages.${pkgs.stdenv.hostPlatform.system}.default
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|