- Update flake.nix with 25.11 release and core inputs - Add dedicated modules for audio (Pipewire), bluetooth, and networking - Update GEMINI.md with the new Modular Merging Architecture blueprint - Configure graphical installer ISO and test VM outputs
13 lines
342 B
Nix
13 lines
342 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
xdg.configFile = {
|
|
"btop".source = ../../config/btop;
|
|
"chromium".source = ../../config/chromium;
|
|
"fastfetch".source = ../../config/fastfetch;
|
|
"kitty".source = ../../config/kitty;
|
|
"swayosd".source = ../../config/swayosd;
|
|
"xdg-terminals.list".source = ../../config/xdg-terminals.list;
|
|
};
|
|
}
|