!qol(restructure): heavy restructure

This commit is contained in:
2025-12-10 21:37:23 +00:00
parent b5c2089694
commit f1337d3edd
114 changed files with 2 additions and 360 deletions

30
modules/helium/home.nix Normal file
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 = [
inputs.nikkuss-pkgs.packages.x86_64-linux.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";
# };
};
}