11 lines
200 B
Nix
11 lines
200 B
Nix
{config, ...}: let
|
|
data = config.xdg.dataHome;
|
|
conf = config.xdg.configHome;
|
|
cache = config.xdg.cacheHome;
|
|
in {
|
|
imports = [
|
|
./programs
|
|
./shell/zsh.nix
|
|
#./shell/starship.nix
|
|
];
|
|
}
|