2023-12-04 06:42:34 +00:00
|
|
|
{ lib, ... }: {
|
2023-11-02 08:30:08 +00:00
|
|
|
programs.git.userEmail = "evie.litherland-smith@ukaea.uk";
|
2023-09-30 07:38:52 +01:00
|
|
|
accounts = {
|
|
|
|
email.accounts = {
|
|
|
|
proton.primary = false;
|
2023-10-15 10:02:16 +01:00
|
|
|
outlook.primary = true;
|
2023-09-30 07:38:52 +01:00
|
|
|
};
|
2023-10-10 10:20:43 +01:00
|
|
|
calendar.accounts = {
|
2023-10-10 10:41:47 +01:00
|
|
|
nextcloud.vdirsyncer.enable = false; # TEMP until fixed
|
2023-10-10 10:20:43 +01:00
|
|
|
nextcloud.primary = false;
|
2023-10-15 10:02:16 +01:00
|
|
|
outlook.primary = true;
|
2023-10-10 10:20:43 +01:00
|
|
|
};
|
2023-08-07 10:00:57 +01:00
|
|
|
};
|
2023-12-04 06:42:34 +00:00
|
|
|
services = {
|
|
|
|
syncthing.enable = lib.mkForce false;
|
|
|
|
kanshi = {
|
|
|
|
enable = true;
|
|
|
|
profiles = {
|
|
|
|
undocked = {
|
|
|
|
outputs = [{
|
2023-11-21 11:38:17 +00:00
|
|
|
criteria = "eDP-1";
|
2023-12-04 06:42:34 +00:00
|
|
|
status = "enable";
|
|
|
|
}];
|
|
|
|
};
|
|
|
|
docked = {
|
|
|
|
outputs = [
|
|
|
|
{
|
|
|
|
criteria = "Dell Inc. DELL P3223QE CCG8YN3";
|
|
|
|
status = "enable";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
criteria = "eDP-1";
|
|
|
|
status = "disable";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2023-11-21 11:38:17 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2023-09-04 08:53:41 +01:00
|
|
|
xdg.configFile."hypr/extra.conf".text = ''
|
2023-08-30 13:59:44 +01:00
|
|
|
misc {
|
|
|
|
disable_hyprland_logo = true
|
|
|
|
disable_splash_rendering = true
|
|
|
|
}
|
2023-09-04 08:53:41 +01:00
|
|
|
|
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
|
2023-08-21 11:01:19 +01:00
|
|
|
'';
|
2023-07-12 16:43:18 +01:00
|
|
|
}
|