summaryrefslogtreecommitdiff
path: root/hosts/toaster
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/toaster')
-rw-r--r--hosts/toaster/default.nix1
-rw-r--r--hosts/toaster/irc.nix9
2 files changed, 10 insertions, 0 deletions
diff --git a/hosts/toaster/default.nix b/hosts/toaster/default.nix
index f67d3ff..6ef19d0 100644
--- a/hosts/toaster/default.nix
+++ b/hosts/toaster/default.nix
@@ -2,6 +2,7 @@
imports = [
./amd.nix
./hardware-configuration.nix
+ ./irc.nix
./network-vpns.nix
./network.nix
./secrets.nix
diff --git a/hosts/toaster/irc.nix b/hosts/toaster/irc.nix
new file mode 100644
index 0000000..85398ab
--- /dev/null
+++ b/hosts/toaster/irc.nix
@@ -0,0 +1,9 @@
+{ config, pkgs, ... }: {
+ environment.systemPackages = [ pkgs.senpai ];
+
+ sops.secrets = {
+ "irc/senpai" = {
+ owner = config.users.users.grue.name;
+ };
+ };
+}