nixos/home/work.nix

22 lines
589 B
Nix

{
config,
lib,
pkgs,
...
}: {
imports = [./default.nix];
home.packages = with 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;
};
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";
};
}