nixos/system/work.nix
Evie Litherland-Smith 2c9e736bd7 Add initial config for qutebrowser
Still needs some work before it can be a daily driver
2024-11-14 15:16:02 +00:00

18 lines
593 B
Nix

{ lib, username, ... }:
{
home-manager.users.${username} =
{ config, ... }:
{
imports = [ ./home/openfortivpn/ukaea.nix ];
programs = {
git.userEmail = config.accounts.email.accounts.outlook.address;
qutebrowser.settings.url.default_page = "https://nucleus.ukaea.uk";
};
accounts.email.accounts = {
proton.primary = lib.mkForce false;
outlook.primary = lib.mkForce true;
};
home.shellAliases.sync-onedrive = "rclone copy -P OneDrive: ~/Documents/OneDrive && rclone sync -P ~/Documents/OneDrive OneDrive:";
};
}