- updated inputs - added new host `hs` - workflows to check and release new host `hs` - chrome instead of chromium (if not on aarch64) - fixed bud configuration error for `pc` host - fixed Emacs purescript format on save
7 lines
169 B
Nix
7 lines
169 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.chromium = {
|
|
enable = true;
|
|
package = with pkgs; if stdenv.hostPlatform.isAarch64 then ungoogled-chromium else google-chrome;
|
|
};
|
|
}
|