uriel: import bitlbee & weechat cfg

This commit is contained in:
lassulus 2015-10-03 21:22:07 +02:00
parent 29396c23f7
commit 2b86994dca
2 changed files with 24 additions and 0 deletions

View File

@ -12,6 +12,8 @@ with builtins;
../2configs/new-repos.nix
../2configs/chromium-patched.nix
../2configs/retiolum.nix
../2configs/bitlbee.nix
../2configs/weechat.nix
{
users.extraUsers = {
root = {

22
lass/2configs/weechat.nix Normal file
View File

@ -0,0 +1,22 @@
{ config, lib, pkgs, ... }:
with lib;
{
imports = [
../3modules/per-user.nix
];
lass.per-user.chat.packages = [
pkgs.weechat
pkgs.tmux
];
users.extraUsers.chat = {
home = "/home/chat";
useDefaultShell = true;
createHome = true;
openssh.authorizedKeys.keys = map readFile [
../../krebs/Zpubkeys/lass.ssh.pub
];
};
}