From 1c8d4bd653f878a26ddead8aab22d7f60611388b Mon Sep 17 00:00:00 2001 From: Quentin Boyer Date: Tue, 4 Apr 2023 23:24:05 +0200 Subject: [PATCH] ZeNixComputa: add teams --- hostconfig/ZeNixComputa/hm.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hostconfig/ZeNixComputa/hm.nix b/hostconfig/ZeNixComputa/hm.nix index cc1545c..c588c52 100644 --- a/hostconfig/ZeNixComputa/hm.nix +++ b/hostconfig/ZeNixComputa/hm.nix @@ -1,7 +1,13 @@ -{config, ...}: { +{ + config, + pkgs, + ... +}: { home.username = "${config.extraInfo.username}"; home.homeDirectory = "/home/${config.extraInfo.username}"; + home.packages = with pkgs; [teams]; + programs.git = { userName = "traxys"; userEmail = config.extraInfo.email;