32 lines
550 B
Nix
32 lines
550 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = lib.flatten [
|
|
## Common Imports ##
|
|
(map lib.custom.relativeToRoot [
|
|
"home/global/common/browsers"
|
|
"home/global/common/gaming"
|
|
"home/global/common/gnome"
|
|
"home/global/common/vscode"
|
|
"home/global/common/xdg.nix"
|
|
])
|
|
|
|
## VM Specific ##
|
|
./config
|
|
];
|
|
|
|
## Packages with no needed configs ##
|
|
home.packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
## Media ##
|
|
cider # Apple Music
|
|
youtube-music
|
|
|
|
## Tools ##
|
|
inspector
|
|
;
|
|
};
|
|
}
|