summaryrefslogtreecommitdiff
path: root/nixos/modules/features/desktop-apps/default.nix
blob: 175938ed77747e2002ffc532a4cb9eb8df88cadf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ pkgs, inputs, ... }:

{
  # Desktop GUI applications
  environment.systemPackages = with pkgs; [
    # Packaged from a flake input (see flake.nix)
    inputs.helium-browser.packages.${pkgs.stdenv.hostPlatform.system}.helium
    secretspec
    claude-code
    cryptomator
    keepassxc
    libreoffice
    hunspellDicts.ru_RU
    opencode
    pkgs.ayugram-desktop
    pkgs.legcord
    pkgs.vesktop
    pkgs.amnezia-vpn
    obsidian
    obs-studio
    pkgs.qbittorrent
    evince
    pkgs.masterpdfeditor
    librewolf
    chromium
  ];
}