summaryrefslogtreecommitdiff
path: root/profiles/workshop.nix
blob: 0691b61d7664ac745cca6698591fd8c62f6d42f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# lithium server
{ pkgs, lib, ... }:

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