This repository has been archived on 2024-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager/work.nix

33 lines
805 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}: {
home = {
username = "elitherl";
packages = with pkgs; [
twinkle
teams-for-linux
(writeShellScriptBin "ukaea-vpn-connect"
"sudo ${openfortivpn}/bin/openfortivpn -c ${./ukaea-vpn.conf}")
];
};
programs = {
git.userEmail = config.accounts.email.accounts.outlook.address;
firefox.policies.Homepage.URL = "https://nucleus.ukaea.uk";
};
accounts.email.accounts = {
proton.primary = lib.mkForce false;
outlook.primary = lib.mkForce true;
};
2024-06-12 10:44:53 +01:00
xdg.configFile."teams-for-linux/config.json".text = builtins.toJSON {
awayOnSystemIdle = true;
closeAppOnCross = true;
followSystemTheme = true;
notificationMethod = "electron";
optInTeamsV2 = true;
spellCheckerLanguages = ["en_GB"];
};
}