irssi->senpai

This commit is contained in:
Grigory Shipunov 2023-02-09 19:23:49 +01:00
parent 3d823e8667
commit 280cd788ec
Signed by: 0xa
GPG key ID: 91FA5E5BF9AA901C
3 changed files with 14 additions and 2 deletions

View file

@ -2,6 +2,7 @@
imports = [
./amd.nix
./hardware-configuration.nix
./irc.nix
./network-vpns.nix
./network.nix
./secrets.nix

9
hosts/toaster/irc.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }: {
environment.systemPackages = [ pkgs.senpai ];
sops.secrets = {
"irc/senpai" = {
owner = config.users.users.grue.name;
};
};
}