diff options
Diffstat (limited to 'nixos/.flake/home/services/core.nix')
-rw-r--r-- | nixos/.flake/home/services/core.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/nixos/.flake/home/services/core.nix b/nixos/.flake/home/services/core.nix new file mode 100644 index 0000000..132e3e6 --- /dev/null +++ b/nixos/.flake/home/services/core.nix @@ -0,0 +1,13 @@ +{ config, pkgs, ... }: + +{ + imports = [ + ./mpd.nix + ./syncthing.nix + ]; + + home.packages = with pkgs; [ + mako # TODO + mpdscribble + ]; +} |