19 lines
332 B
Nix
19 lines
332 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./default.nix
|
|
./openfortivpn/ukaea.nix
|
|
];
|
|
home.packages = [ pkgs.twinkle ];
|
|
programs.git.userEmail = config.accounts.email.accounts.outlook.address;
|
|
accounts.email.accounts = {
|
|
proton.primary = lib.mkForce false;
|
|
outlook.primary = lib.mkForce true;
|
|
};
|
|
}
|