nix-config/modules/default/nixos/desktop/applications.nix
2025-02-09 16:49:24 +01:00

34 lines
464 B
Nix

{ lib, config, pkgs, inputs, system, ... }:
lib.mkIf config.desktop.enable {
environment.systemPackages =
(with pkgs; [
feh
enpass
proton-pass
vesktop
obsidian
kicad
protonmail-desktop
signal-desktop
piper
qemu
libreoffice
blender
gimp
inkscape
prusa-slicer
UVtools
audacity
])
++
[
inputs.zen.packages.${system}.specific
];
}