summaryrefslogtreecommitdiffstats
path: root/nin/2configs/weechat.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2020-04-21 21:52:12 +0200
committermakefu <github@syntax-fehler.de>2020-04-21 21:52:12 +0200
commitcd0bc2f0de3f41020f5bd02ce03160b2799b9521 (patch)
treec7c75299a49f110632357bc830b550c9b6470f68 /nin/2configs/weechat.nix
parentb3a59f2fcfc99aecd90b624a67e5880bafa7ecee (diff)
parent49c283cde7faf00139244b8f58dc1e260a65f665 (diff)
Merge remote-tracking branch 'lass/20.03' into 20.03
Diffstat (limited to 'nin/2configs/weechat.nix')
-rw-r--r--nin/2configs/weechat.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/nin/2configs/weechat.nix b/nin/2configs/weechat.nix
deleted file mode 100644
index 6c0fb31..0000000
--- a/nin/2configs/weechat.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-let
- inherit (import <stockholm/lib>) genid;
-in {
- krebs.per-user.chat.packages = with pkgs; [
- mosh
- weechat
- tmux
- ];
-
- users.extraUsers.chat = {
- home = "/home/chat";
- uid = genid "chat";
- useDefaultShell = true;
- createHome = true;
- openssh.authorizedKeys.keys = [
- config.krebs.users.nin.pubkey
- ];
- };
-}