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 { }: rec {
inherit hostname; inherit hostname;
accentColour = "magenta"; accentColour = "blue";
accentColour2 = "cyan";
iosevkaCustom = { iosevkaCustom = {
packages = iosevka-custom.outputs.packages.${system}; packages = iosevka-custom.outputs.packages.${system};
names = iosevka-custom.outputs.names; names = iosevka-custom.outputs.names;

View file

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

View file

@ -23,7 +23,6 @@
libreoffice-fresh libreoffice-fresh
inkscape inkscape
webcord webcord
signal-desktop
swayimg swayimg
swaybg swaybg
(writeShellScriptBin "set-background" '' (writeShellScriptBin "set-background" ''
@ -100,7 +99,6 @@
added = defaultApplications; added = defaultApplications;
removed = { removed = {
"x-scheme-handler/zoomus" = config.xdg.mimeApps.defaultApplications."x-scheme-handler/http"; "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-word" = ["writer.desktop"];
"x-scheme-handler/ms-powerpoint" = ["impress.desktop"]; "x-scheme-handler/ms-powerpoint" = ["impress.desktop"];
"x-scheme-handler/ms-excel" = ["calc.desktop"]; "x-scheme-handler/ms-excel" = ["calc.desktop"];
"x-scheme-handler/msteams" = ["teams-for-linux.desktop"];
} }

View file

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

View file

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

View file

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

View file

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