dotfiles/hosts/blackbox-jr/home-manager.nix
2023-01-02 12:04:37 -05:00

15 lines
219 B
Nix

{ pkgs, ... }:
{
# Common Imports
imports = [
../_common/home.nix
../_common/programs.nix
../_common/xdg.nix
];
home.sessionVariables = {
XDG_CONFIG_HOME = "/home/tyrel/.config";
};
}