Compare commits
4 commits
bcc07b98cb
...
3c9b3dfcac
Author | SHA1 | Date | |
---|---|---|---|
Evie Litherland-Smith | 3c9b3dfcac | ||
Evie Litherland-Smith | b3202b5ae4 | ||
Evie Litherland-Smith | 1f04b00dfd | ||
Evie Litherland-Smith | fda20dbf29 |
|
@ -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;
|
||||
|
|
|
@ -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}")
|
||||
];
|
||||
|
|
|
@ -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"];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -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"];
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -127,8 +127,10 @@
|
|||
auctex-latexmk
|
||||
latex-preview-pane
|
||||
|
||||
# Email
|
||||
# Contacts
|
||||
bbdb
|
||||
mu4e
|
||||
ement
|
||||
|
||||
# RSS feeds
|
||||
elfeed
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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}"
|
||||
|
|
Reference in a new issue