stockholm/lass/2configs/weechat.nix

41 lines
763 B
Nix
Raw Normal View History

2015-10-03 19:22:07 +00:00
{ config, lib, pkgs, ... }:
2016-02-21 13:31:12 +00:00
let
inherit (config.krebs.lib) genid;
in {
krebs.per-user.chat.packages = with pkgs; [
2016-02-21 13:31:43 +00:00
mosh
2016-02-21 13:31:12 +00:00
tmux
weechat
2015-10-03 19:22:07 +00:00
];
users.extraUsers.chat = {
home = "/home/chat";
2016-02-21 13:31:12 +00:00
uid = genid "chat";
2015-10-03 19:22:07 +00:00
useDefaultShell = true;
createHome = true;
2015-11-13 13:57:19 +00:00
openssh.authorizedKeys.keys = [
config.krebs.users.lass.pubkey
2015-10-03 19:22:07 +00:00
];
};
2015-11-13 13:57:19 +00:00
#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";
# };
#};
2015-10-03 19:22:07 +00:00
}