21 lines
402 B
Nix
21 lines
402 B
Nix
{ pkgs, ... }:
|
|
let
|
|
theme = pkgs.myThemes.current;
|
|
variables = {
|
|
# Configure github cli
|
|
GITHUB_USERNAME = "Mateiadrielrafael";
|
|
|
|
# Sets neovim as default editor
|
|
EDITOR = "nvim";
|
|
|
|
PNPM_HOME = "~/.PNPM_HOME";
|
|
};
|
|
in
|
|
{
|
|
imports = [{
|
|
home-manager.users.adrielus.home.sessionVariables = theme.env or { };
|
|
}];
|
|
|
|
home-manager.users.adrielus.home.sessionVariables = variables;
|
|
}
|