Compare commits
3 commits
dee84e10bb
...
303fe87377
Author | SHA1 | Date | |
---|---|---|---|
Evie Litherland-Smith | 303fe87377 | ||
Evie Litherland-Smith | db03814d3e | ||
Evie Litherland-Smith | cd9441bde4 |
|
@ -1,12 +1,14 @@
|
|||
# Sync common directories, setting url to ensure it's up-to-date first
|
||||
SYNC_DIRS=(
|
||||
"$HOME/.password-store/"
|
||||
"$HOME/.bookmarks/"
|
||||
"$HOME/.elfeed/"
|
||||
"$HOME/Documents/Org/"
|
||||
"$HOME/Documents/References/"
|
||||
)
|
||||
SYNC_URLS=(
|
||||
"https://git.xenia.me.uk/pixelifytica/pass.git"
|
||||
"https://git.xenia.me.uk/pixelifytica/bookmarks.git"
|
||||
"https://git.xenia.me.uk/pixelifytica/elfeed.git"
|
||||
"https://git.xenia.me.uk/pixelifytica/org.git"
|
||||
"https://git.xenia.me.uk/pixelifytica/references.git"
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = [pkgs.chromium];
|
||||
programs.chromium = {
|
||||
programs.chromium = rec {
|
||||
enable = true;
|
||||
defaultSearchProviderEnabled = true;
|
||||
defaultSearchProviderSearchURL = "https://search.atlas.engineer/searxng/search?q={searchTerms}";
|
||||
defaultSearchProviderSuggestURL = "https://duckduckgo.com/?q={searchTerms}";
|
||||
defaultSearchProviderSearchURL = "https://duckduckgo.com/?q={searchTerms}";
|
||||
defaultSearchProviderSuggestURL = defaultSearchProviderSearchURL;
|
||||
extensions = [
|
||||
"cjpalhdlnbpafiamejdnhcphjbkeiagm" # ublock origin
|
||||
"dphilobhebphkdjbpfohgikllaljmgbn" # simplelogin
|
||||
"bkkmolkhemgaeaeggcmfbghljjjoofoh" # catppuccin mocha theme
|
||||
];
|
||||
extraOpts = {
|
||||
"AllowDinosaurEasterEgg" = true;
|
||||
|
@ -35,82 +34,6 @@
|
|||
"SpellcheckLanguage" = ["en-GB"];
|
||||
"SpellCheckServiceEnabled" = false;
|
||||
"SyncDisabled" = true;
|
||||
# Bookmarks
|
||||
"ManagedBookmarks" = [
|
||||
{toplevel_name = "Managed Bookmarks";}
|
||||
{
|
||||
name = "Messaging";
|
||||
children = [
|
||||
{
|
||||
name = "WhatsApp Web";
|
||||
url = "https://web.whatsapp.com/";
|
||||
}
|
||||
{
|
||||
name = "Discord";
|
||||
url = "https://discord.com/login"; # TODO update to proper webapp URL
|
||||
}
|
||||
{
|
||||
name = "Microsoft Teams";
|
||||
url = "https://teams.microsoft.com";
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
name = "Server";
|
||||
children = [
|
||||
{
|
||||
name = "Home Page";
|
||||
url = "https://xenia.me.uk";
|
||||
}
|
||||
{
|
||||
name = "Forgejo";
|
||||
url = "https://git.xenia.me.uk";
|
||||
}
|
||||
{
|
||||
name = "Grafana Dashboard";
|
||||
url = "https://grafana.xenia.me.uk";
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
name = "Documentation";
|
||||
children = [
|
||||
{
|
||||
name = "NixOS and Flakes";
|
||||
url = "https://nixos-and-flakes.thiscute.world/";
|
||||
}
|
||||
{
|
||||
name = "Home Manager Configuration Options";
|
||||
url = "https://nix-community.github.io/home-manager/options.xhtml";
|
||||
}
|
||||
{
|
||||
name = "Home Manager Option Search";
|
||||
url = "https://mipmip.github.io/home-manager-option-search/";
|
||||
}
|
||||
{
|
||||
name = "Mozilla Policy Templates";
|
||||
url = "https://mozilla.github.io/policy-templates/";
|
||||
}
|
||||
{
|
||||
name = "Chrome Enterprise Policy List";
|
||||
url = "https://chromeenterprise.google/policies/";
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
name = "Awesome Repos";
|
||||
children = [
|
||||
{
|
||||
name = "Emacs";
|
||||
url = "https://github.com/emacs-tw/awesome-emacs";
|
||||
}
|
||||
{
|
||||
name = "Hyprland";
|
||||
url = "https://github.com/hyprland-community/awesome-hyprland";
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue