nixos/hosts/Ronin/home.nix
Evie Litherland-Smith 6aae3e131f Fix accidentally disabling work email on work machines...
Move work email config to separate work.nix file in email directory,
remove the if block dependencies on mu status since that doesn't get
update if mu.enable is changed in another file!
2024-03-11 15:35:01 +00:00

21 lines
605 B
Nix

{
config,
lib,
pkgs,
...
}: {
home.packages = [(pkgs.writeShellScriptBin "ukaea-vpn-connect" "sudo ${pkgs.openfortivpn}/bin/openfortivpn -c ${./ukaea-vpn.conf}")];
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 = [
"eDP-1,1920x1080,2560x576,1.25" # => 1536x864
"desc:Dell Inc. DELL P3223QE CCG8YN3,highres,0x0,1.5" # => 2560x1440
];
};
}