aboutsummaryrefslogtreecommitdiff
path: root/nixos/.flake/home/services/core.nix
blob: a9380a65fc57a59d620776c1515c21fbd1f08d24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, pkgs, ... }:

{
  imports = [
    ./emacs.nix
    ./mako.nix
    ./mpd.nix
    ./syncthing.nix
  ];

  home.packages = with pkgs; [
    mpdscribble
  ];
}