18 lines
649 B
Nix
18 lines
649 B
Nix
{pkgs, ...}: {
|
|
home.packages = [(pkgs.writeShellScriptBin "ukaea-vpn-connect" "sudo ${pkgs.openfortivpn}/bin/openfortivpn -c ${./ukaea-vpn.conf}")];
|
|
programs.git.userEmail = "evie.litherland-smith@ukaea.uk";
|
|
accounts.email.accounts = {
|
|
proton.primary = false;
|
|
outlook.primary = true;
|
|
};
|
|
wayland.windowManager.hyprland.settings = {
|
|
misc.force_default_wallpaper = 0;
|
|
monitor = [
|
|
"eDP-1,1920x1080,2560x0,1.25"
|
|
"desc:Dell Inc. DELL P3223QE CCG8YN3,highres,0x0,1.5"
|
|
"desc:Dell Inc. DELL U2422H 1KSPF83,preferred,1408x-1080,1.0"
|
|
"desc:Dell Inc. DELL U2422H H9SPF83,preferred,3328x-1080,1.0"
|
|
];
|
|
};
|
|
}
|