mirror of https://git.jolheiser.com/dotnix.git
parent
a66b3136d5
commit
daf5dbff47
|
@ -19,6 +19,7 @@
|
||||||
./oh-my-posh.nix
|
./oh-my-posh.nix
|
||||||
./spotifyd.nix
|
./spotifyd.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
|
./tiny.nix
|
||||||
./wezterm.nix
|
./wezterm.nix
|
||||||
./zoxide.nix
|
./zoxide.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -117,11 +117,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1688894907,
|
"lastModified": 1689631193,
|
||||||
"narHash": "sha256-U7hEDDhzAhLp6T+DEUbfwAsL+BtqFFGn+S1pa/0XrZY=",
|
"narHash": "sha256-AGSkBZaiTODQc8eT1rZDrQIjtb8JtFwJ0wVPzArlrnM=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "4ddf98349c793377c76806ebfbdfb2b96dd4ef5d",
|
"rev": "57695599bdc4f7bfe5d28cfa23f14b3d8bdf8a5f",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -57,6 +57,7 @@
|
||||||
ssh-config = userSecret ./secrets/shared/ssh-config.age;
|
ssh-config = userSecret ./secrets/shared/ssh-config.age;
|
||||||
ssh-config-work = userSecret ./secrets/shared/ssh-config-work.age;
|
ssh-config-work = userSecret ./secrets/shared/ssh-config-work.age;
|
||||||
spotify-pw = userSecret ./secrets/shared/spotify-pw.age;
|
spotify-pw = userSecret ./secrets/shared/spotify-pw.age;
|
||||||
|
irc-pw = userSecret ./secrets/shared/irc-pw.age;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -8,4 +8,5 @@ in {
|
||||||
"shared/ssh-config.age".publicKeys = all;
|
"shared/ssh-config.age".publicKeys = all;
|
||||||
"shared/ssh-config-work.age".publicKeys = all;
|
"shared/ssh-config-work.age".publicKeys = all;
|
||||||
"shared/spotify-pw.age".publicKeys = all;
|
"shared/spotify-pw.age".publicKeys = all;
|
||||||
|
"shared/irc-pw.age".publicKeys = all;
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue