Evie Litherland-Smith
390883b318
Add catppuccin theme to Xresources and set HiDPI for Scorch (for Xwayland applications)
19 lines
430 B
Nix
19 lines
430 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.git.userEmail = config.accounts.email.accounts.outlook.address;
|
|
accounts.email.accounts = {
|
|
proton.primary = lib.mkForce false;
|
|
outlook.primary = lib.mkForce true;
|
|
};
|
|
wayland.windowManager.sway.config.output = {
|
|
"Dell Inc. DELL P3223QE CCG8YN3" = {
|
|
pos = "0 0";
|
|
scale = "1.5";
|
|
};
|
|
};
|
|
xresources.properties."Xft.dpi" = toString (builtins.mul 96 1.5);
|
|
}
|