23 lines
333 B
Nix
23 lines
333 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
|
|
];
|
|
};
|
|
}
|