nixos/system/work.nix
Evie Litherland-Smith 83e0b05e96 Wallpaper changes and cleanup
Upscale default wallpaper (now default.png rather than default.jpg)

Set Vanguard to use a local animated wallpaper, as the file is quite
big after upscaling so I'm not putting it in this repo...

Deleted a bunch of wallpapers files from the repo but they're backed
up in syncthing

Removed overskride and nm-connection-editor from waybar shortcut, open
terminal with bluetoothctl and nmtui respectively instead

Move twinkle to only be installed on work machine
2025-01-03 09:27:46 +00:00

23 lines
544 B
Nix

{
lib,
pkgs,
username,
...
}:
{
environment.systemPackages = with pkgs; [ twinkle ];
home-manager.users.${username} =
{ config, ... }:
{
imports = [ ./home/openfortivpn/ukaea.nix ];
programs = {
git.userEmail = config.accounts.email.accounts.outlook.address;
firefox.profiles.user.settings."browser.startup.homepage" = "https://nucleus.ukaea.uk";
};
accounts.email.accounts = {
proton.primary = lib.mkForce false;
outlook.primary = lib.mkForce true;
};
};
}