30 lines
744 B
Nix
30 lines
744 B
Nix
{ 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;
|
|
outlook.primary = true;
|
|
};
|
|
calendar.accounts = {
|
|
nextcloud.vdirsyncer.enable = false; # TEMP until fixed
|
|
nextcloud.primary = false;
|
|
outlook.primary = true;
|
|
};
|
|
};
|
|
xdg.configFile."hypr/extra.conf".text = ''
|
|
misc {
|
|
disable_hyprland_logo = true
|
|
disable_splash_rendering = true
|
|
}
|
|
|
|
monitor=eDP-1,preferred,0x190,1.00
|
|
monitor=desc:Iiyama North America PLB2403WS 0574281251316,preferred,1920x190,1
|
|
'';
|
|
}
|