2023-10-03 13:15:32 +01:00
|
|
|
{ config, pkgs, lib, ... }:
|
2023-09-10 17:07:11 +01:00
|
|
|
|
|
|
|
{
|
2023-08-07 10:00:57 +01:00
|
|
|
programs = {
|
|
|
|
git.userEmail = "evie.litherland-smith@ukaea.uk";
|
2023-09-15 07:13:52 +01:00
|
|
|
firefox.profiles.default.settings."browser.startup.homepage" =
|
|
|
|
"https://nucleus.ukaea.uk";
|
|
|
|
};
|
2023-09-30 07:38:52 +01:00
|
|
|
accounts = {
|
|
|
|
email.accounts = {
|
|
|
|
proton.primary = false;
|
2023-10-15 10:02:16 +01:00
|
|
|
outlook.primary = true;
|
2023-09-30 07:38:52 +01:00
|
|
|
};
|
2023-10-10 10:20:43 +01:00
|
|
|
calendar.accounts = {
|
2023-10-10 10:41:47 +01:00
|
|
|
nextcloud.vdirsyncer.enable = false; # TEMP until fixed
|
2023-10-10 10:20:43 +01:00
|
|
|
nextcloud.primary = false;
|
2023-10-15 10:02:16 +01:00
|
|
|
outlook.primary = true;
|
2023-10-10 10:20:43 +01:00
|
|
|
};
|
2023-08-07 10:00:57 +01:00
|
|
|
};
|
2023-09-04 08:53:41 +01:00
|
|
|
xdg.configFile."hypr/extra.conf".text = ''
|
2023-08-30 13:59:44 +01:00
|
|
|
misc {
|
|
|
|
disable_hyprland_logo = true
|
|
|
|
disable_splash_rendering = true
|
|
|
|
}
|
2023-09-04 08:53:41 +01:00
|
|
|
|
2023-10-15 10:46:53 +01:00
|
|
|
monitor=eDP-1,preferred,0x190,1.5
|
|
|
|
monitor=desc:Iiyama North America PLB2403WS 0574281251316,preferred,1280x190,1
|
2023-08-21 11:01:19 +01:00
|
|
|
'';
|
2023-07-12 16:43:18 +01:00
|
|
|
}
|