dot.nix/home/hosts/rune/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

58 lines
956 B
Nix

{
pkgs,
lib,
inputs,
config,
...
}:
{
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"
])
## Rune Specific ##
./config
];
## Packages with no needed configs ##
home.packages = builtins.attrValues {
inherit (pkgs)
## Media ##
ffmpeg
spotify
gpu-screen-recorder-gtk
## Social ##
telegram-desktop
discord-krisp
betterdiscordctl
## Tools ##
bitwarden-desktop
inspector
remmina
solaar
vial # KB setup
## Productivity ##
gimp
inkscape
eloquent
## Minecraft ##
modrinth-app
gdlauncher-carbon
;
inherit (pkgs.jetbrains)
## Development ##
idea-ultimate
;
};
}