dotfiles/hosts/blackbox-jr/home-manager.nix

15 lines
219 B
Nix
Raw Normal View History

2023-01-02 15:23:09 +00:00
{ pkgs, ... }:
{
2023-01-02 17:04:37 +00:00
# Common Imports
imports = [
../_common/home.nix
../_common/programs.nix
../_common/xdg.nix
];
home.sessionVariables = {
XDG_CONFIG_HOME = "/home/tyrel/.config";
};
2023-01-02 15:23:09 +00:00
}