Compare commits
No commits in common. "371d0547bf5a5408cf1f77fd9090a7a655dc40bf" and "6aaf6488db0f635e0e3560d2e6ae37cee1f3c810" have entirely different histories.
371d0547bf
...
6aaf6488db
|
@ -1,8 +1,4 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [ ./firefox.nix ];
|
||||||
./firefox.nix
|
|
||||||
./nyxt.nix
|
|
||||||
./qutebrowser.nix
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
:on-primary-color "${scheme.base05}"
|
:on-primary-color "${scheme.base05}"
|
||||||
:secondary-color "${scheme.base03}"
|
:secondary-color "${scheme.base03}"
|
||||||
:on-secondary-color "${scheme.base05}"
|
:on-secondary-color "${scheme.base05}"
|
||||||
:accent-color "${scheme.magenta}"
|
:accent-color "${scheme.base0E}"
|
||||||
:on-accent-color "${scheme.base01}"
|
:on-accent-color "${scheme.base01}"
|
||||||
:action-color "${scheme.cyan}"
|
:action-color "${scheme.cyan}"
|
||||||
:on-action-color "${scheme.base01}"
|
:on-action-color "${scheme.base01}"
|
||||||
|
|
|
@ -1,44 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
|
||||||
programs.qutebrowser = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
changelog_after_upgrade = "major";
|
|
||||||
# confirm_quit = "downloads";
|
|
||||||
content = {
|
|
||||||
autoplay = false;
|
|
||||||
blocking.enabled = true;
|
|
||||||
cookies.accept = "no-unknown-3rdparty";
|
|
||||||
headers.do_not_track = true;
|
|
||||||
};
|
|
||||||
downloads.location.directory = config.xdg.userDirs.download;
|
|
||||||
new_instance_open_target = "tab";
|
|
||||||
qt.highdpi = true;
|
|
||||||
scrolling.smooth = true;
|
|
||||||
# spellcheck.languages = [ "en-GB" ];
|
|
||||||
tabs = {
|
|
||||||
last_close = "blank";
|
|
||||||
show = "multiple";
|
|
||||||
};
|
|
||||||
url.default_page = lib.mkDefault "about:blank";
|
|
||||||
window.hide_decoration = true;
|
|
||||||
};
|
|
||||||
searchEngines = {
|
|
||||||
w = "https://en.wikipedia.org/wiki/Special:Search?search={}&go=Go&ns0=1";
|
|
||||||
aw = "https://wiki.archlinux.org/?search={}";
|
|
||||||
nw = "https://wiki.nixos.org/index.php?search={}";
|
|
||||||
gh = "https://github.com/search?q={}";
|
|
||||||
fh = "https://flathub.org/apps/search?q={}";
|
|
||||||
py = "https://pypi.org/search/?q={}";
|
|
||||||
};
|
|
||||||
# quickmarks =
|
|
||||||
# let
|
|
||||||
# in
|
|
||||||
# { };
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -260,7 +260,7 @@
|
||||||
"center, xdg-desktop-portal-gtk"
|
"center, xdg-desktop-portal-gtk"
|
||||||
|
|
||||||
# Workspace rules
|
# Workspace rules
|
||||||
"workspace 2, (firefox|org.qutebrowser.qutebrowser)" # Browser
|
"workspace 2, firefox" # Browser
|
||||||
"workspace 3, (libreoffice|soffice)(.*)" # Documents
|
"workspace 3, (libreoffice|soffice)(.*)" # Documents
|
||||||
"workspace 4, (signal|com.rtosta.zapzap|WebCord|teams-for-linux|twinkle)" # Messaging
|
"workspace 4, (signal|com.rtosta.zapzap|WebCord|teams-for-linux|twinkle)" # Messaging
|
||||||
"workspace 5, (org.remmina.Remmina|Nxplayer.bin)" # Remote Desktop
|
"workspace 5, (org.remmina.Remmina|Nxplayer.bin)" # Remote Desktop
|
||||||
|
|
|
@ -4,10 +4,7 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
imports = [ ./home/openfortivpn/ukaea.nix ];
|
imports = [ ./home/openfortivpn/ukaea.nix ];
|
||||||
programs = {
|
programs.git.userEmail = config.accounts.email.accounts.outlook.address;
|
||||||
git.userEmail = config.accounts.email.accounts.outlook.address;
|
|
||||||
qutebrowser.settings.url.default_page = "https://nucleus.ukaea.uk";
|
|
||||||
};
|
|
||||||
accounts.email.accounts = {
|
accounts.email.accounts = {
|
||||||
proton.primary = lib.mkForce false;
|
proton.primary = lib.mkForce false;
|
||||||
outlook.primary = lib.mkForce true;
|
outlook.primary = lib.mkForce true;
|
||||||
|
|
Loading…
Reference in a new issue