• Relocates common configurations from a user-specific directory to a global hierarchy • Adds host-specific files and updates import paths for better modularity • Introduces an experimental GNOME mutter feature
22 lines
345 B
Nix
22 lines
345 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
# imports = lib.flatten [
|
|
# ## Common Imports ##
|
|
# (map lib.custom.relativeToRoot [
|
|
# "home/global/common/development"
|
|
# ])
|
|
|
|
# ## Proxy Specific ##
|
|
# ./config
|
|
# ];
|
|
|
|
## Packages with no needed configs ##
|
|
# home.packages = builtins.attrValues {
|
|
# inherit (pkgs)
|
|
# ;
|
|
# };
|
|
}
|