add(helium): added nikkuss-pkgs and helium from that

This commit is contained in:
2025-11-11 11:09:22 +00:00
parent 373bf166d0
commit d1b2e85fae
5 changed files with 264 additions and 140 deletions

View File

@@ -0,0 +1,3 @@
_: {
home = ./home.nix;
}

View File

@@ -0,0 +1,30 @@
{
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";
# };
};
}