summaryrefslogtreecommitdiffstats
path: root/lass/2configs/weechat.nix
blob: 1e5f2d177ccca0da495147bf78a4f3076749dd99 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ config, lib, pkgs, ... }:

let
  inherit (import <stockholm/lib>) genid;
in {
  krebs.per-user.chat.packages = with pkgs; [
    mosh
    weechat
  ];

  users.extraUsers.chat = {
    home = "/home/chat";
    uid = genid "chat";
    useDefaultShell = true;
    createHome = true;
    openssh.authorizedKeys.keys = [
      config.krebs.users.lass.pubkey
      config.krebs.users.lass-shodan.pubkey
      config.krebs.users.lass-icarus.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";
  #  };
  #};
}