summaryrefslogtreecommitdiffstats
path: root/irc.nix
diff options
context:
space:
mode:
Diffstat (limited to 'irc.nix')
-rw-r--r--irc.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/irc.nix b/irc.nix
new file mode 100644
index 0000000..a897e1f
--- /dev/null
+++ b/irc.nix
@@ -0,0 +1,19 @@
+{
+ config,
+ pkgs,
+ username,
+ ...
+}: {
+ imports = [
+ ];
+
+ hjem.users.${username} = {
+ files = {
+ ".config/senpai/senpai.scfg".source = ./dotfiles/senpai/senpai.scfg;
+ };
+
+ packages = with pkgs; [
+ senpai
+ ];
+ };
+}