20 lines
397 B
Nix
20 lines
397 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
home.packages = with pkgs; [
|
||
|
twinkle
|
||
|
(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;
|
||
|
};
|
||
|
}
|