mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 03:29:20 +00:00
legacy artemis config - needs refactor
This commit is contained in:
parent
aba3aceed8
commit
961d41b9bf
34 changed files with 1572 additions and 12 deletions
60
home/programs/firefox/default.nix
Normal file
60
home/programs/firefox/default.nix
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
config,
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
policies = {
|
||||
DisablePocket = true;
|
||||
DisableTelemetry = true;
|
||||
};
|
||||
|
||||
profiles.c = {
|
||||
bookmarks = [
|
||||
{
|
||||
name = "NixOS";
|
||||
toolbar = true;
|
||||
bookmarks = [
|
||||
{
|
||||
name = "Packages";
|
||||
url = "https://search.nixos.org";
|
||||
}
|
||||
{
|
||||
name = "Wiki";
|
||||
url = "https://nixos.wiki";
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
name = "News";
|
||||
toolbar = true;
|
||||
bookmarks = [
|
||||
{
|
||||
name = "Al Jazeera";
|
||||
url = "https://aljazeera.com";
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
|
||||
containers = {};
|
||||
|
||||
settings = {};
|
||||
|
||||
userChrome = "";
|
||||
|
||||
userContent = "";
|
||||
|
||||
extensions = with inputs.firefox-addons.packages."x86_64-linux"; [
|
||||
bitwarden
|
||||
ublock-origin
|
||||
darkreader
|
||||
youtube-shorts-block
|
||||
privacy-badger
|
||||
return-youtube-dislikes
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue