nixos/hosts/Scorch/home.nix
Evie Litherland-Smith 390883b318 Sway: add urgent theme, add blur to swaync notifications
Add catppuccin theme to Xresources and set HiDPI for Scorch (for
Xwayland applications)
2024-04-15 10:40:04 +01:00

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);
}