1
Fork 0
satellite/modules/applications/shells/sessionVariables.nix

23 lines
555 B
Nix
Raw Normal View History

2020-04-10 15:51:16 +02:00
{ ... }:
with import ../../../secrets.nix;
let
theme = "github-dark";
2020-04-10 15:51:16 +02:00
variables = {
2022-02-22 21:52:01 +01:00
# Configure github cli
2020-04-10 15:51:16 +02:00
GITHUB_USERNAME = "Mateiadrielrafael";
inherit GITHUB_TOKEN;
2022-02-22 21:52:01 +01:00
# Sets neovim as default editor
EDITOR = "nvim";
2022-03-10 20:59:18 +01:00
# Sets the current theme used by all programs
THEME = theme;
# Common command for launching alacritty with the correct theme
# LAUNCH_ALACRITTY = "alacritty --config-file ~/.config/alacritty/themes/$THEME.yml";
2020-04-10 15:51:16 +02:00
};
2022-02-22 21:52:01 +01:00
in
{
home-manager.users.adrielus = { home.sessionVariables = variables; };
}