Compare commits

..

4 commits

Author SHA1 Message Date
Evie Litherland-Smith 3c9b3dfcac Add teams-for-linux back, remove signal-desktop
Plan to add matrix bridges for signal and whatsapp so don't need the
installed applications any more
2024-06-12 07:36:48 +01:00
Evie Litherland-Smith b3202b5ae4 Switch firefox to default theme so that it uses GTK 2024-06-12 07:33:53 +01:00
Evie Litherland-Smith 1f04b00dfd Change accentColour, add accentColour2 for certain programs (e.g. sway) 2024-06-12 07:32:03 +01:00
Evie Litherland-Smith fda20dbf29 Emacs: add BBDB and ement packages 2024-06-12 07:31:52 +01:00
8 changed files with 12 additions and 7 deletions

View file

@ -35,7 +35,8 @@
...
}: rec {
inherit hostname;
accentColour = "magenta";
accentColour = "blue";
accentColour2 = "cyan";
iosevkaCustom = {
packages = iosevka-custom.outputs.packages.${system};
names = iosevka-custom.outputs.names;

View file

@ -6,6 +6,7 @@
}: {
imports = [./default.nix];
home.packages = with pkgs; [
teams-for-linux
nomachine-client
(writeShellScriptBin "ukaea-vpn-connect" "sudo ${openfortivpn}/bin/openfortivpn -c ${./ukaea-vpn.conf}")
];

View file

@ -23,7 +23,6 @@
libreoffice-fresh
inkscape
webcord
signal-desktop
swayimg
swaybg
(writeShellScriptBin "set-background" ''
@ -100,7 +99,6 @@
added = defaultApplications;
removed = {
"x-scheme-handler/zoomus" = config.xdg.mimeApps.defaultApplications."x-scheme-handler/http";
"x-scheme-handler/msteams" = ["teams-for-linux.desktop"];
};
};
};

View file

@ -65,4 +65,5 @@ in {
"x-scheme-handler/ms-word" = ["writer.desktop"];
"x-scheme-handler/ms-powerpoint" = ["impress.desktop"];
"x-scheme-handler/ms-excel" = ["calc.desktop"];
"x-scheme-handler/msteams" = ["teams-for-linux.desktop"];
}

View file

@ -4,6 +4,7 @@
pkgs,
fonts,
accentColour,
accentColour2,
...
}: {
wayland.windowManager.sway = {
@ -47,7 +48,7 @@
};
colors = with config.scheme.withHashtag; let
text = toString base05;
indicator = toString cyan;
indicator = toString config.scheme.withHashtag.${accentColour2};
background = toString base00;
in {
inherit background;

View file

@ -127,8 +127,10 @@
auctex-latexmk
latex-preview-pane
# Email
# Contacts
bbdb
mu4e
ement
# RSS feeds
elfeed

View file

@ -105,7 +105,7 @@
"browser.warnOnQuitShortcut" = false;
"distribution.searchplugins.defaultLocale" = "en-GB";
"doh-rollout.home-region" = "GB";
"extensions.activeThemeID" = "firefox-alpenglow@mozilla.org";
"extensions.activeThemeID" = "default-theme@mozilla.org";
"extensions.formautofill.creditCards.enabled" = false;
"general.useragent.locale" = "en-GB";
"intl.accept_languages" = "en-gb,en";

View file

@ -3,6 +3,7 @@
pkgs,
fonts,
accentColour,
accentColour2,
...
}: {
home.packages = [pkgs.nyxt];
@ -23,7 +24,7 @@
:on-primary-color "${base01}"
:secondary-color "${base03}"
:on-secondary-color "${base05}"
:accent-color "${cyan}"
:accent-color "${config.scheme.withHashtag.${accentColour2}}"
:on-accent-color "${base01}"
:action-color "${cyan}"
:on-action-color "${base01}"