13 lines
288 B
Nix
13 lines
288 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://drone.greenbaum.cloud";
|
||
|
};
|
||
|
};
|
||
|
}
|