nixos/hosts/Ronin/home.nix

26 lines
678 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 {
force_default_wallpaper = 0
}
2023-12-19 11:36:13 +00:00
monitor=eDP-1,1920x1080,1152x1080,1.25
2023-12-14 13:46:40 +00:00
monitor=desc:Dell Inc. DELL U2422H 1KSPF83,preferred,0x0,1.0
monitor=desc:Dell Inc. DELL U2422H H9SPF83,preferred,1920x0,1.0
'';
}