13 lines
277 B
Nix
13 lines
277 B
Nix
{ 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 = {
|
|
DRONE_SERVER = "https://ci.b12f.io";
|
|
};
|
|
};
|
|
}
|