mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +00:00
[Desktop+Overlays] Add chromium to global packages
Enable Ublock and HTTPS Everywhere by default Signed-off-by: Antoine Viallon <antoine@lesviallon.fr>
This commit is contained in:
parent
8c143ee73d
commit
65249e06a2
2 changed files with 15 additions and 0 deletions
11
desktop.nix
11
desktop.nix
|
|
@ -187,6 +187,7 @@ in {
|
|||
|
||||
environment.systemPackages = with pkgs; with libsForQt5; [
|
||||
# firefox
|
||||
chromium
|
||||
konsole
|
||||
kate
|
||||
yakuake
|
||||
|
|
@ -213,6 +214,16 @@ in {
|
|||
unstable.kotatogram-desktop
|
||||
];
|
||||
|
||||
programs.chromium = {
|
||||
enable = true;
|
||||
extensions = [
|
||||
"gcbommkclmclpchllfjekcdonpmejbdp" # HTTPS Everywhere
|
||||
"cjpalhdlnbpafiamejdnhcphjbkeiagm" # Ublock Origin
|
||||
];
|
||||
defaultSearchProviderSearchURL = "https://duckduckgo.com/?kp=1&k1=-1&kav=1&kak=-1&kax=-1&kaq=-1&kap=-1&kau=-1&kao=-1&kae=d&q={searchTerms}";
|
||||
};
|
||||
|
||||
|
||||
programs.steam.enable = true;
|
||||
hardware.steam-hardware.enable = true;
|
||||
programs.steam.remotePlay.openFirewall = true;
|
||||
|
|
|
|||
|
|
@ -69,6 +69,10 @@ in
|
|||
ark = optimizeForThisHost (super.ark.override {
|
||||
unfreeEnableUnrar = true;
|
||||
});
|
||||
chromium = super.ungoogled-chromium.override {
|
||||
# ungoogled = true;
|
||||
enableWideVine = true;
|
||||
};
|
||||
})
|
||||
# (self: super: {
|
||||
# nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue