dot.nix/home/hosts/rune/default.nix
Chris Toph 9e443fa4f1 Refactors configurations across home for cleaner user/host-specific configs
- Removes global development utilities file and shifts related tools to core
- Updates gaming and vscode modules with refined commands and file renames
- Wraps GNOME dconf settings in mkDefault/mkForce for consistency across users
- Adds host-specific configurations (dconf, monitors, and VM settings)
- Organizes user theme files by relocating global assets to user directories
2025-05-28 17:04:49 -04:00

50 lines
820 B
Nix

{
pkgs,
lib,
inputs,
config,
...
}:
{
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"
])
## 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
betterdiscordctl
## Tools ##
bitwarden-desktop
inspector
remmina
vial # KB setup
## Productivity ##
gimp
inkscape
## Development ##
idea-ultimate
;
};
}