20 lines
459 B
Nix
20 lines
459 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [./default.nix];
|
||
|
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);
|
||
|
}
|