Evie Litherland-Smith
502e723931
Move to specific machines because I don't want the programs autostarting on laptops
19 lines
345 B
Nix
19 lines
345 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [ ./default.nix ];
|
|
home.packages = [
|
|
pkgs.twinkle
|
|
(import ./scripts/ukaea-vpn.nix pkgs)
|
|
];
|
|
programs.git.userEmail = config.accounts.email.accounts.outlook.address;
|
|
accounts.email.accounts = {
|
|
proton.primary = lib.mkForce false;
|
|
outlook.primary = lib.mkForce true;
|
|
};
|
|
}
|