aboutsummaryrefslogtreecommitdiff
path: root/nixos/flake/home/services/core.nix.org
blob: 7fbc333b1e7dadee9fcd022a82cc0e7a350a1651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#+title: Core Service Configuration

Import service configurations.
#+begin_src nix :tangle ~/.flake/home/services/core.nix :mkdirp yes
  { config, pkgs, ... }:

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

    home.packages = with pkgs; [
      mpdscribble
    ];
  }
#+end_src