nixos/hosts/Scorch/home.nix

24 lines
566 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 {
force_default_wallpaper = 0
}
monitor=desc:Dell Inc. DELL P3223QE CCG8YN3,highres,0x0,1.5
'';
}