summaryrefslogtreecommitdiff
path: root/profiles/workshop.nix
blob: b4cf4c14045e106781137b0470fccdf2d7b79f29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# lithium server
{ pkgs, lib, ... }:

{
  imports = [
    ../lib/linux.nix
  ];
  programs.git.signing.signByDefault = true;
  systemd.user.services = {
    "shop-music".Service = {
      RestartSec = "3s";
      Restart = "always";
      ExecStart = "${pkgs.mplayer}/bin/mplayer http://localhost:8097";
    };
  };
}