Evie Litherland-Smith
21f27fdc88
Plasma: use icon theme from GTK config to avoid duplication / conflicts Remove rounded corners in GTK extra CSS Firefox: remove homepage
17 lines
320 B
Nix
17 lines
320 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
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;
|
|
};
|
|
}
|