add browser extensions

This commit is contained in:
logical-code 2025-07-11 00:31:35 -04:00
parent 2800687662
commit 0015c62414
3 changed files with 33 additions and 16 deletions

View file

@ -3,11 +3,16 @@
lib,
pkgs,
...
}: let
}:
let
cfg = config.core;
in {
imports = [./gaming.nix ./desktop.nix];
in
{
imports = [
./gaming.nix
./desktop.nix
];
config = {
environment.systemPackages = with pkgs; [

View file

@ -3,12 +3,14 @@
lib,
pkgs,
...
}: let
}:
let
inherit (lib.modules) mkIf;
inherit (lib.options) mkEnableOption;
cfg = config.core.desktop;
in {
in
{
options.core.desktop = {
enable = mkEnableOption "Config and Utils for Desktop";
};

View file

@ -3,12 +3,14 @@
lib,
pkgs,
...
}: let
}:
let
inherit (lib.modules) mkIf;
inherit (lib.options) mkEnableOption;
cfg = config.core.gaming;
in {
in
{
options.core.gaming = {
enable = mkEnableOption "Config and Utils for gaming";
@ -32,8 +34,16 @@ in {
extest.enable = lib.mkDefault true;
protontricks.enable = lib.mkDefault true;
};
gamemode.enable = true;
chromium = {
enable = true;
extensions = [
"jplnlifepflhkbkgonidnobkakhmpnmh" #PIA
"nngceckbapebfimnlniiiahkandclblb" #Bitwarden
"hlkenndednhfkekhgcdicdfddnkalmdm" #Cookie Editor
]
}
};
};
}