nixos/hosts/Scorch/home.nix

19 lines
430 B
Nix
Raw Permalink Normal View History

2024-03-13 17:04:37 +00:00
{
config,
lib,
...
}: {
programs.git.userEmail = config.accounts.email.accounts.outlook.address;
accounts.email.accounts = {
proton.primary = lib.mkForce false;
outlook.primary = lib.mkForce true;
};
2024-04-15 08:02:57 +01:00
wayland.windowManager.sway.config.output = {
"Dell Inc. DELL P3223QE CCG8YN3" = {
pos = "0 0";
scale = "1.5";
};
2024-03-13 17:04:37 +00:00
};
xresources.properties."Xft.dpi" = toString (builtins.mul 96 1.5);
2024-03-13 17:04:37 +00:00
}