2024-11-08 06:33:25 +00:00
|
|
|
{
|
2024-12-21 06:24:22 +00:00
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
username,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
{
|
|
|
|
stylix = {
|
|
|
|
image = lib.mkForce ./wallpapers/science/jet_glass_side_s100_pass_latest.png;
|
|
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/one-light.yaml";
|
|
|
|
};
|
2024-11-08 06:33:25 +00:00
|
|
|
home-manager.users.${username} =
|
|
|
|
{ config, ... }:
|
|
|
|
{
|
|
|
|
imports = [ ./home/openfortivpn/ukaea.nix ];
|
2024-11-14 15:16:02 +00:00
|
|
|
programs = {
|
|
|
|
git.userEmail = config.accounts.email.accounts.outlook.address;
|
2024-12-04 07:18:27 +00:00
|
|
|
firefox.profiles.user.settings."browser.startup.homepage" = "https://nucleus.ukaea.uk";
|
2024-11-14 15:16:02 +00:00
|
|
|
};
|
2024-11-08 06:33:25 +00:00
|
|
|
accounts.email.accounts = {
|
|
|
|
proton.primary = lib.mkForce false;
|
|
|
|
outlook.primary = lib.mkForce true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|