blob: bd4c1d20372a584ca9f84f39e7619008974bd9a1 (
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
|