about summary refs log tree commit diff
path: root/hosts/tahoe/home.nix
blob: 2e562759c7f8cd6704e568ddca527e2f7ffc1405 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs, ... }:

{
  my.home = {
    packages = { enable = true; };
    tmux.enable = true;
    git.enable = true;
    ssh.enable = true;
    zsh.enable = true;
    beets = {
      enable = true;
      musicDirectory = "/data/fast/music";
    };
    flac.enable = true;
    yt-dlp.enable = true;
  };
}