27 lines
719 B
Nix
27 lines
719 B
Nix
{ lib, ... }: {
|
|
programs.git.userEmail = "evie.litherland-smith@ukaea.uk";
|
|
accounts = {
|
|
email.accounts = {
|
|
proton.primary = false;
|
|
outlook.primary = true;
|
|
};
|
|
calendar.accounts = {
|
|
nextcloud.vdirsyncer.enable = false; # TEMP until fixed
|
|
nextcloud.primary = false;
|
|
outlook.primary = true;
|
|
};
|
|
};
|
|
services.syncthing.enable = lib.mkForce false;
|
|
|
|
xdg.configFile."hypr/extra.conf".text = ''
|
|
misc {
|
|
disable_hyprland_logo = true
|
|
disable_splash_rendering = true
|
|
}
|
|
|
|
monitor=eDP-1,1920x1080,1152x1080,1.25
|
|
monitor=desc:Dell Inc. DELL U2422H 1KSPF83,preferred,0x0,1.0
|
|
monitor=desc:Dell Inc. DELL U2422H H9SPF83,preferred,1920x0,1.0
|
|
'';
|
|
}
|