nixos/hosts/Ronin/home.nix

30 lines
741 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";
firefox.profiles.default.settings."browser.startup.homepage" =
"https://nucleus.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-22 12:55:02 +01:00
monitor=eDP-1,preferred,0x480,1.5
monitor=desc:Iiyama North America PLB2403WS 0574281251316,preferred,1280x0,1
'';
}