use chromium from flake

This commit is contained in:
illustris 2023-08-27 16:01:19 +05:30
parent 76a25f314a
commit 679838ff67
Signed by: illustris
GPG Key ID: 56C8FC0B899FEFA3
4 changed files with 6 additions and 40 deletions

View File

@ -5,8 +5,8 @@
# blender # blender
dmenu dmenu
dunst dunst
firefox # firefox
flutter # flutter
gimp gimp
gnome.gnome-screenshot gnome.gnome-screenshot
guake guake
@ -60,7 +60,7 @@
security.rtkit.enable = true; security.rtkit.enable = true;
services = { services = {
blueman.enable = true; # blueman.enable = true;
picom = { picom = {
backend = "glx"; backend = "glx";
# backend = "xr_glx_hybrid"; # backend = "xr_glx_hybrid";

6
flake.lock generated
View File

@ -49,11 +49,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1693038750, "lastModified": 1693132095,
"narHash": "sha256-E2LPvt+R8rh2uBBZqKsMRst+f/m5T0KcyOnaoQgQRe8=", "narHash": "sha256-MZzCHu0IunZV8gBjg5eaobA5a9o0ERNwh39GRJvJxeo=",
"owner": "illustris", "owner": "illustris",
"repo": "flake", "repo": "flake",
"rev": "0fa532af2d2a32fca2fb01baa403e985ac455142", "rev": "0a57fc904aa38b1fdcfa15699e4a6eee58cbc683",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -1,33 +0,0 @@
{ pkgs, ... }:
{
programs.browserpass.enable = true;
programs.chromium = {
enable = true;
extensions = [
# "gcbommkclmclpchllfjekcdonpmejbdp" # https everywhere
"cjpalhdlnbpafiamejdnhcphjbkeiagm" # ublock origin
"iipjdmnoigaobkamfhnojmglcdbnfaaf" # Clutter Free
# "bdakmnplckeopfghnlpocafcepegjeap" # RescueTime
# "gppongmhjkpfnbhagpmjfkannfbllamg" # wappalyzer
"lcbjdhceifofjlpecfpeimnnphbcjgnc" # xBrowserSync
# "chlffgpmiacpedhhbkiomidkjlcfhogd" # pushbullet
"aghfnjkcakhmadgdomlmlhhaocbkloab" # just black
"fmkadmapgofadopljbjfkapdkoienihi" # React Developer Tools
"naepdomgkenhinolocfifgehidddafch" # Browserpass
"bhhioamnpnhgcakbdnkgmnjjbjolfjmj" # Advent of Code to Markdown
"iccmddoieihalmghkeocgmlpilhgnnfn" # Save ChatGPT
];
homepageLocation = "https://sx.illustris.tech/";
defaultSearchProviderSuggestURL = "https://sx.illustris.tech/autocompleter?q={searchTerms}";
defaultSearchProviderSearchURL = "https://sx.illustris.tech/search?q={searchTerms}";
extraOpts = {
DefaultSearchProviderEnabled = true;
DefaultSearchProviderName = "Sx";
DefaultCookiesSetting = 1;
};
};
environment.systemPackages = with pkgs; [
ungoogled-chromium
];
}

View File

@ -1,6 +1,5 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
imports = [ imports = [
./chromium
]; ];
} }