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 {
|
}: 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;
|
||||||
|
|
|
@ -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}")
|
||||||
];
|
];
|
||||||
|
|
|
@ -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"];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -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"];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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";
|
||||||
|
|
|
@ -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}"
|
||||||
|
|
Reference in a new issue