Evie Litherland-Smith
2ad36439c8
Sync new work calendar to fix duplicate issues Sync old calendar as read-only ics link to see invited events Re-enable vdirsyncer service for work machines
32 lines
883 B
Nix
32 lines
883 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
programs = {
|
|
git.userEmail = "evie.litherland-smith@ukaea.uk";
|
|
firefox.profiles.default.settings."browser.startup.homepage" =
|
|
"https://nucleus.ukaea.uk";
|
|
};
|
|
programs.mbsync.groups.inboxes.ukaea = [ "INBOX" ];
|
|
accounts = {
|
|
email.accounts = {
|
|
proton.primary = false;
|
|
ukaea.primary = true;
|
|
};
|
|
calendar.accounts = {
|
|
nextcloud.primary = false;
|
|
ukaea.primary = true;
|
|
};
|
|
};
|
|
xdg.configFile."hypr/extra.conf".text = ''
|
|
misc {
|
|
disable_hyprland_logo = true
|
|
disable_splash_rendering = true
|
|
}
|
|
|
|
monitor=eDP-1,preferred,1920x190,1
|
|
monitor=desc:Iiyama North America PLB2403WS 0574281251316,preferred,3840x190,1
|
|
monitor=desc:Dell Inc. DELL U2417H 5K9YD872FY1L,preferred,5760x0,1,transform,1
|
|
monitor=desc:Acer Technologies ED270R TJMEE0043W01,highrr,0x0,1
|
|
'';
|
|
}
|