blob: 0836ef950c4698c1d28c507d793f7e2c419ca323 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# lithium server
{ pkgs, lib, ... }:
{
imports = [
../lib/linux.nix
];
home = {
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";
};
};
}
|