2023-01-02 15:23:09 +00:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
2023-01-02 17:04:37 +00:00
|
|
|
# Common Imports
|
|
|
|
imports = [
|
2023-01-03 05:32:32 +00:00
|
|
|
./home.nix
|
2023-01-02 17:04:37 +00:00
|
|
|
../_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
|
|
|
|
|
|
|
|
|
|
|
}
|