stockholm/lass/2configs/weechat.nix
2016-02-21 14:31:43 +01:00

41 lines
763 B
Nix

{ config, lib, pkgs, ... }:
let
inherit (config.krebs.lib) genid;
in {
krebs.per-user.chat.packages = with pkgs; [
mosh
tmux
weechat
];
users.extraUsers.chat = {
home = "/home/chat";
uid = genid "chat";
useDefaultShell = true;
createHome = true;
openssh.authorizedKeys.keys = [
config.krebs.users.lass.pubkey
];
};
#systemd.services.chat = {
# description = "chat environment setup";
# after = [ "network.target" ];
# wantedBy = [ "multi-user.target" ];
# path = with pkgs; [
# weechat
# tmux
# ];
# restartIfChanged = true;
# serviceConfig = {
# User = "chat";
# Restart = "always";
# ExecStart = "${pkgs.tmux}/bin/tmux new -s IM weechat";
# };
#};
}