nixos/hosts/Ronin/home.nix

26 lines
650 B
Nix
Raw Normal View History

2023-12-04 06:42:34 +00:00
{ lib, ... }: {
programs.git.userEmail = "evie.litherland-smith@ukaea.uk";
accounts = {
email.accounts = {
proton.primary = false;
2023-10-15 10:02:16 +01:00
outlook.primary = true;
};
calendar.accounts = {
nextcloud.vdirsyncer.enable = false; # TEMP until fixed
nextcloud.primary = false;
2023-10-15 10:02:16 +01:00
outlook.primary = true;
};
};
2023-12-08 16:36:40 +00:00
services.syncthing.enable = lib.mkForce false;
xdg.configFile."hypr/extra.conf".text = ''
misc {
disable_hyprland_logo = true
disable_splash_rendering = true
}
2023-12-12 06:40:45 +00:00
monitor=eDP-1,preferred,0x576,1.5
2023-12-08 16:45:30 +00:00
monitor=desc:Dell Inc. DELL P3223QE CCG8YN3,preferred,1536x0,1.5
'';
}