Add project to repo
This commit is contained in:
19
home/programs/browsers.nix
Normal file
19
home/programs/browsers.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ pkgs
|
||||
, config
|
||||
, ...
|
||||
}: {
|
||||
programs = {
|
||||
chromium = {
|
||||
enable = true;
|
||||
commandLineArgs = [ "--enable-features=TouchpadOverscrollHistoryNavigation" ];
|
||||
extensions = [
|
||||
# {id = "";} // extension id, query from chrome web store
|
||||
];
|
||||
};
|
||||
|
||||
firefox = {
|
||||
enable = true;
|
||||
profiles.ryan = { };
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user