diff options
| author | Grigory Shipunov | 2023-02-09 19:23:49 +0100 |
|---|---|---|
| committer | Grigory Shipunov | 2023-02-09 20:52:48 +0100 |
| commit | 280cd788eca6db141378d84644a6acd03e4ec9f1 (patch) | |
| tree | 2370f4f990d5219a466103a6abc249ec28fadcaa /hosts | |
| parent | 3d823e8667404bf7fcb9f26628bce576b2faf460 (diff) | |
irssi->senpai
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; + }; + }; +} |
