flake/modules/nixos/programs/graphical.nix
2025-11-22 23:18:21 +03:00

24 lines
351 B
Nix

{
pkgs,
lib,
config,
...
}:
{
config = lib.mkIf config.osbmModules.programs.graphical.enable {
environment.systemPackages = with pkgs; [
mpv
gimp
inkscape
libreoffice
discord
telegram-desktop
obs-studio
blender
vscode
chromium
thunderbird
claude-code
];
};
}