dotfiles/hosts/vostro/home-manager.nix

16 lines
236 B
Nix
Raw Normal View History

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