2024-07-03 07:15:39 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
2024-07-21 18:40:13 +01:00
|
|
|
imports = [./default.nix];
|
2024-07-03 07:15:39 +01:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
twinkle
|
|
|
|
(import ./scripts/ukaea-vpn.nix pkgs)
|
|
|
|
];
|
2024-07-10 10:22:24 +01:00
|
|
|
programs.git.userEmail = config.accounts.email.accounts.outlook.address;
|
2024-07-03 07:15:39 +01:00
|
|
|
accounts.email.accounts = {
|
|
|
|
proton.primary = lib.mkForce false;
|
|
|
|
outlook.primary = lib.mkForce true;
|
|
|
|
};
|
2024-07-25 07:40:16 +01:00
|
|
|
xdg.configFile = {
|
|
|
|
"autostart/twinkle.desktop".source = "${pkgs.twinkle}/share/applications/twinkle.desktop";
|
|
|
|
"autostart/teams-for-linux.desktop".source = "${pkgs.teams-for-linux}/share/applications/teams-for-linux.desktop";
|
|
|
|
};
|
2024-07-03 07:15:39 +01:00
|
|
|
}
|