This commit is contained in:
illustris 2022-02-12 20:26:32 +05:30
parent 294379abd6
commit faf6c49d7b
4 changed files with 33 additions and 23 deletions

View File

@ -112,7 +112,7 @@
unzip unzip
usbutils usbutils
valgrind valgrind
virt-manager #virt-manager
wget wget
youtube-dl youtube-dl
(cscope.override{emacsSupport = false;}) (cscope.override{emacsSupport = false;})

View File

@ -84,28 +84,7 @@
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
programs.steam.enable = true; programs.steam.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
];
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; [ environment.systemPackages = with pkgs; [
st st
dmenu dmenu

View File

@ -0,0 +1,26 @@
{ ... }:
{
config.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
];
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;
};
};
}

5
modules/default.nix Normal file
View File

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