dot.nix/home/hosts/gojo/default.nix
Chris Toph 3523b82392 Configuration Cleanup
- Removed inaccurate comments
- Refactored browsers to independent nixes
- Small code changes for clarity
2025-05-29 15:25:49 -04:00

37 lines
641 B
Nix

{
lib,
pkgs,
hostSpec,
...
}:
{
imports = lib.flatten [
## Common Imports ##
(map lib.custom.relativeToRoot [
"home/global/common/gaming"
"home/global/common/gnome"
"home/global/common/vscode"
"home/global/common/xdg.nix"
"home/global/common/zen.nix"
])
## Gojo Specific ##
./config
];
home.sessionVariables = {
FLAKE = "${hostSpec.home}/git/dot.nix";
};
## Packages with no needed configs ##
home.packages = builtins.attrValues {
inherit (pkgs)
## Media ##
cider # Apple Music
youtube-music
## Tools ##
inspector
;
};
}