nixos/system/home/work.nix
2024-09-02 08:33:16 +01:00

17 lines
416 B
Nix

{
config,
lib,
pkgs,
...
}:
{
imports = [ ./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;
};
xdg.configFile."autostart/twinkle.desktop".source = "${pkgs.twinkle}/share/applications/twinkle.desktop";
}