diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/toaster/default.nix | 1 | ||||
| -rw-r--r-- | hosts/toaster/irc.nix | 9 |
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; + }; + }; +} |
