nixos/hosts/Ronin/home.nix

30 lines
726 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-30 10:54:49 +00:00
monitor=eDP-1,preferred,auto,1.25
monitor=desc:Dell Inc. DELL P3223QE CCG8YN3,preferred,0x0,1.5
'';
}