31 lines
740 B
Nix
31 lines
740 B
Nix
{
|
|
config,
|
|
lib,
|
|
inputs,
|
|
pkgs,
|
|
system,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.modules.helium;
|
|
# packageNix = "${inputs.nixpkgs-gamescope}/pkgs/by-name/he/helium-browser/package.nix";
|
|
# helium = inputs.nikkuss-pkgs.callPackage packageNix { };
|
|
in
|
|
{
|
|
options.modules.helium = {
|
|
enable = lib.mkEnableOption "helium";
|
|
};
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = with pkgs; [
|
|
helium-browser
|
|
];
|
|
# xdg.mimeApps.defaultApplications = {
|
|
# "text/html" = "chromium.desktop";
|
|
# "x-scheme-handler/http" = "chromium.desktop";
|
|
# "x-scheme-handler/https" = "chromium.desktop";
|
|
# "x-scheme-handler/about" = "chromium.desktop";
|
|
# "x-scheme-handler/unknown" = "chromium.desktop";
|
|
# };
|
|
};
|
|
}
|