Evie Litherland-Smith
7f5420df3b
Use rclone mount rather than syncing anyway, more robust to changes from multiple machines
17 lines
455 B
Nix
17 lines
455 B
Nix
{ lib, username, ... }:
|
|
{
|
|
home-manager.users.${username} =
|
|
{ config, ... }:
|
|
{
|
|
imports = [ ./home/openfortivpn/ukaea.nix ];
|
|
programs = {
|
|
git.userEmail = config.accounts.email.accounts.outlook.address;
|
|
qutebrowser.settings.url.default_page = "https://nucleus.ukaea.uk";
|
|
};
|
|
accounts.email.accounts = {
|
|
proton.primary = lib.mkForce false;
|
|
outlook.primary = lib.mkForce true;
|
|
};
|
|
};
|
|
}
|