15 lines
219 B
Nix
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";
|
|
};
|
|
|
|
|
|
}
|