2021-06-06 15:22:44 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
let
|
|
|
|
psCfg = config.pub-solar;
|
|
|
|
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
home-manager = pkgs.lib.setAttrByPath [ "users" psCfg.user.name ] {
|
|
|
|
home.sessionVariables = {
|
2021-10-24 01:14:04 +02:00
|
|
|
DRONE_SERVER = "https://ci.b12f.io";
|
2022-01-19 01:13:15 +01:00
|
|
|
GOPATH = "/home/${psCfg.user.name}/CodeRoom/go";
|
2021-06-06 15:22:44 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|