nixos/hosts/Ronin/home.nix

26 lines
616 B
Nix
Raw Normal View History

2023-10-03 13:15:32 +01:00
{ config, pkgs, 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;
};
};
xdg.configFile."hypr/extra.conf".text = ''
misc {
disable_hyprland_logo = true
disable_splash_rendering = true
}
2023-10-30 11:56:43 +00:00
monitor=eDP-1,preferred,2560x576,1.25
2023-10-30 10:54:49 +00:00
monitor=desc:Dell Inc. DELL P3223QE CCG8YN3,preferred,0x0,1.5
'';
}