feat: tiny

Signed-off-by: jolheiser <john.olheiser@gmail.com>
jenkins
jolheiser 2023-07-18 21:57:39 -05:00
parent a66b3136d5
commit daf5dbff47
Signed by: jolheiser
GPG Key ID: B853ADA5DA7BBF7A
6 changed files with 34 additions and 3 deletions

View File

@ -19,6 +19,7 @@
./oh-my-posh.nix
./spotifyd.nix
./ssh.nix
./tiny.nix
./wezterm.nix
./zoxide.nix
];

28
apps/tiny.nix 100644
View File

@ -0,0 +1,28 @@
{
programs.tiny = {
enable = true;
settings = {
servers = [
{
addr = "irc.libera.chat";
port = 6697;
tls = true;
realname = "jolheiser";
nicks = ["jolheiser"];
alias = "LiberaChat";
#join = ["#gitea"];
sasl = {
username = "jolheiser";
password = {
command = "cat /run/agenix/irc-pw";
};
};
}
];
defaults = {
nicks = ["jolheiser"];
realname = "jolheiser";
};
};
};
}

View File

@ -117,11 +117,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1688894907,
"narHash": "sha256-U7hEDDhzAhLp6T+DEUbfwAsL+BtqFFGn+S1pa/0XrZY=",
"lastModified": 1689631193,
"narHash": "sha256-AGSkBZaiTODQc8eT1rZDrQIjtb8JtFwJ0wVPzArlrnM=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "4ddf98349c793377c76806ebfbdfb2b96dd4ef5d",
"rev": "57695599bdc4f7bfe5d28cfa23f14b3d8bdf8a5f",
"type": "github"
},
"original": {

View File

@ -57,6 +57,7 @@
ssh-config = userSecret ./secrets/shared/ssh-config.age;
ssh-config-work = userSecret ./secrets/shared/ssh-config-work.age;
spotify-pw = userSecret ./secrets/shared/spotify-pw.age;
irc-pw = userSecret ./secrets/shared/irc-pw.age;
};
};
};

View File

@ -8,4 +8,5 @@ in {
"shared/ssh-config.age".publicKeys = all;
"shared/ssh-config-work.age".publicKeys = all;
"shared/spotify-pw.age".publicKeys = all;
"shared/irc-pw.age".publicKeys = all;
}

Binary file not shown.