From fa8a6f493f1b5060fa306e39a5502df56f4f02c1 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Sun, 16 May 2021 09:49:15 -0400 Subject: move stuff into profiles --- profiles/workshop.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 profiles/workshop.nix (limited to 'profiles/workshop.nix') diff --git a/profiles/workshop.nix b/profiles/workshop.nix new file mode 100644 index 0000000..b4cf4c1 --- /dev/null +++ b/profiles/workshop.nix @@ -0,0 +1,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"; + }; + }; +} -- cgit v1.2.3