dot.nix/home/hosts/gojo/default.nix
Chris Toph a1d0ce1bb1
Some checks are pending
Build NixOS ISOs (x86 only) / build-iso (x86, desktop) (push) Waiting to run
Build NixOS ISOs (x86 only) / build-iso (x86, server) (push) Waiting to run
Build NixOS ISOs (x86 only) / create-release (push) Blocked by required conditions
Add modrinth-app and gdlauncher-carbon to Rune's package list; include modrinth-app in Gojo's package list
2025-06-28 15:19:48 -04:00

55 lines
932 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 ##
ffmpeg
gpu-screen-recorder-gtk
spotify
youtube-music
## Social ##
betterdiscordctl
discord-krisp
telegram-desktop
## Tools ##
bitwarden-desktop
inspector
solaar
## Productivity ##
gimp
inkscape
eloquent
## Minecraft ##
# modrinth-app
# gdlauncher-carbon
;
};
}