nixos/hosts/Scorch/home.nix

16 lines
397 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.hyprland.settings = {
misc.force_default_wallpaper = 0;
monitor = ["desc:Dell Inc. DELL P3223QE CCG8YN3,highres,0x0,1.5"]; # => 2560x1440
};
}