• 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
23 lines
406 B
Nix
23 lines
406 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
|
|
# imports = lib.flatten [
|
|
# ## Common Imports ##
|
|
# (map lib.custom.relativeToRoot [
|
|
# "home/global/common/development"
|
|
# ])
|
|
|
|
# ## Komodo Specific ##
|
|
# ./config
|
|
# ];
|
|
|
|
home.file = {
|
|
Pool.source = config.lib.file.mkOutOfStoreSymlink "/pool";
|
|
DockerStorage.source = config.lib.file.mkOutOfStoreSymlink "/mnt/DockerStorage";
|
|
};
|
|
}
|