summaryrefslogtreecommitdiffstats
path: root/irc.nix
blob: b590aff0efa247569aa4871e664e34af6aad87fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  config,
  pkgs,
  username,
  ...
}: {
  imports = [
  ];

  hjem.users.${username} = {
    files = {
      ".config/senpai/senpai.scfg".source = ./dotfiles/senpai/senpai-untrusted.scfg;
    };

    packages = with pkgs; [
      senpai
    ];
  };
}