summaryrefslogtreecommitdiff
path: root/profiles/apps.nix
blob: 279ef03620042d3403b568423cbe195662eec336 (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
28
29
30
# Apps profile: GUI and personal applications, plus gaming. Opt-in per machine.
{ pkgs, ... }:

{
  programs.steam.enable = true;
  programs.firefox.enable = true;

  environment.systemPackages = with pkgs; [
    itch
  ];

  users.users.henz.packages = with pkgs; [
    discord
    vlc
    gimp
    inkscape
    darktable
    protonmail-desktop

    # media tooling
    imagemagick
    ffmpeg

    flatpak

    # TUI apps
    newsboat
    castero
  ];
}