Evie Litherland-Smith
763a1d2a05
Place home-manager config under home directory, move system config under system directory. Add hostname-specific entries under home directory to be consistent with how system is configured, update flake accordingly
29 lines
682 B
Nix
29 lines
682 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
twinkle
|
|
teams-for-linux
|
|
(import ./scripts/ukaea-vpn.nix pkgs)
|
|
];
|
|
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;
|
|
};
|
|
xdg.configFile."teams-for-linux/config.json".text = builtins.toJSON {
|
|
awayOnSystemIdle = true;
|
|
closeAppOnCross = true;
|
|
followSystemTheme = true;
|
|
notificationMethod = "electron";
|
|
optInTeamsV2 = true;
|
|
spellCheckerLanguages = ["en_GB"];
|
|
};
|
|
}
|