Evie Litherland-Smith
c96b2797e0
Move steam config to separate file, import by Vanguard. Move work config up one level (system rather than home) to config allowUnfreePredicate for NoMachine. Install teams and twinkle on desktop by default.
21 lines
531 B
Nix
21 lines
531 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
username,
|
|
...
|
|
}:
|
|
{
|
|
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "nomachine-client" ];
|
|
environment.systemPackages = [ pkgs.nomachine-client ];
|
|
home-manager.users.${username} =
|
|
{ config, ... }:
|
|
{
|
|
imports = [ ./home/openfortivpn/ukaea.nix ];
|
|
programs.git.userEmail = config.accounts.email.accounts.outlook.address;
|
|
accounts.email.accounts = {
|
|
proton.primary = lib.mkForce false;
|
|
outlook.primary = lib.mkForce true;
|
|
};
|
|
};
|
|
}
|