Evie Litherland-Smith
22dbc09500
Add options to desktop.nix from home/default.nix that are desktop-relevant. Add mimeapp config back from nixos system config Move fd, ripgrep to enabled programs, remmina to enable service Emacs config now imports shell config to ensure requirements are met instead of duplicating some Move Zsh config into it's own file zsh.nix
21 lines
502 B
Nix
21 lines
502 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [./default.nix];
|
|
home.packages = with pkgs; [
|
|
nomachine-client
|
|
(writeShellScriptBin "ukaea-vpn-connect" "sudo ${openfortivpn}/bin/openfortivpn -c ${./ukaea-vpn.conf}")
|
|
];
|
|
programs = {
|
|
git.userEmail = config.accounts.email.accounts.outlook.address;
|
|
firefox.policies.Homepage.URL = "https://nucleus.ukaea.uk";
|
|
};
|
|
accounts.email.accounts = {
|
|
proton.primary = lib.mkForce false;
|
|
outlook.primary = lib.mkForce true;
|
|
};
|
|
}
|