summaryrefslogtreecommitdiff
path: root/programs.nix
blob: a38712d775038098a894b77710c545e4c181935e (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
{ pkgs, ... }:
{
  environment.systemPackages = with pkgs; [
    itch

    haunt

    (aspellWithDicts (dicts: with dicts; [ en en-computers en-science ]))
  ];

  programs.steam.enable = true;

  services.emacs = {
    enable = true;
    package = pkgs.emacs.pkgs.withPackages (epkgs: [
      (epkgs.treesit-grammars.with-grammars (g: [ g.tree-sitter-nix ]))
    ]);
  };

  services.immich = {
    enable = true;
    machine-learning.enable = false;
  };
}