35 lines
1,017 B
Nix
35 lines
1,017 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [ nomachine-client ];
|
|
programs = {
|
|
git.userEmail = "evie.litherland-smith@ukaea.uk";
|
|
firefox.profiles.default.settings."browser.startup.homepage" =
|
|
"https://nucleus.ukaea.uk";
|
|
};
|
|
programs.mbsync.groups.inboxes.ukaea = [ "INBOX" ];
|
|
accounts = {
|
|
email.accounts = {
|
|
proton.primary = false;
|
|
ukaea = {
|
|
primary = true;
|
|
imapnotify.enable = true;
|
|
mbsync.enable = true;
|
|
msmtp.enable = true;
|
|
mu.enable = true;
|
|
};
|
|
};
|
|
calendar.accounts.nextcloud.vdirsyncer.enable = false; # TEMP until fixed
|
|
};
|
|
services.vdirsyncer.enable = lib.mkForce false; # TEMP until fixed
|
|
xdg.configFile."hypr/extra.conf".text = ''
|
|
misc {
|
|
disable_hyprland_logo = true
|
|
disable_splash_rendering = true
|
|
}
|
|
|
|
monitor=desc:Iiyama North America PLB2403WS 0574281251316,preferred,0x185,1
|
|
monitor=desc:Dell Inc. DELL U2417H 5K9YD872FY1L,preferred,1920x0,1,transform,1
|
|
'';
|
|
}
|