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