• 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
26 lines
382 B
Nix
26 lines
382 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = lib.flatten [
|
|
## Common Imports ##
|
|
(map lib.custom.relativeToRoot [
|
|
"home/global/common/vscode-server.nix"
|
|
])
|
|
|
|
## Nix Specific ##
|
|
# ./config
|
|
];
|
|
|
|
## Packages with no needed configs ##
|
|
home.packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
chafa
|
|
nodejs
|
|
pnpm
|
|
# x2goserver
|
|
;
|
|
};
|
|
}
|