feat(wpcarro/irc): Support Quassel client/server
- server: diogenes - client: marcus Change-Id: Ifc3a58370f6d68aec35ef363a40d03a8429f8012 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4579 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com>
This commit is contained in:
parent
ea39c6bdfe
commit
fbfce6c2a0
2 changed files with 27 additions and 4 deletions
|
@ -5,6 +5,7 @@ let
|
|||
inherit (depot.users.wpcarro) keys;
|
||||
in {
|
||||
imports = [
|
||||
"${depot.path}/ops/modules/quassel.nix"
|
||||
(pkgs.path + "/nixos/modules/virtualisation/google-compute-image.nix")
|
||||
];
|
||||
|
||||
|
@ -27,7 +28,7 @@ in {
|
|||
users = {
|
||||
wpcarro = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" ];
|
||||
extraGroups = [ "wheel" "quassel" ];
|
||||
openssh.authorizedKeys.keys = keys.all;
|
||||
shell = pkgs.fish;
|
||||
};
|
||||
|
@ -35,9 +36,16 @@ in {
|
|||
};
|
||||
|
||||
security = {
|
||||
# Provision SSL certificates to support HTTPS connections.
|
||||
acme.acceptTerms = true;
|
||||
acme.email = "wpcarro@gmail.com";
|
||||
acme = {
|
||||
acceptTerms = true;
|
||||
email = "wpcarro@gmail.com";
|
||||
|
||||
certs."quassel.wpcarro.dev" = {
|
||||
email = "wpcarro@gmail.com";
|
||||
webroot = "/var/lib/acme/challenge-quassel";
|
||||
group = "quassel";
|
||||
};
|
||||
};
|
||||
|
||||
sudo.wheelNeedsPassword = false;
|
||||
};
|
||||
|
@ -62,6 +70,14 @@ in {
|
|||
preserveGenerations = "14d";
|
||||
};
|
||||
|
||||
depot.quassel = {
|
||||
enable = true;
|
||||
acmeHost = "quassel.wpcarro.dev";
|
||||
bindAddresses = [
|
||||
"0.0.0.0"
|
||||
];
|
||||
};
|
||||
|
||||
journaldriver = {
|
||||
enable = true;
|
||||
logStream = "home";
|
||||
|
|
|
@ -3,6 +3,12 @@
|
|||
|
||||
let
|
||||
wpcarrosEmacs = depot.users.wpcarro.emacs.nixos;
|
||||
|
||||
quasselClient = pkgs.quassel.override {
|
||||
client = true;
|
||||
enableDaemon = false;
|
||||
monolithic = false;
|
||||
};
|
||||
in {
|
||||
imports = [
|
||||
(depot.path + "/users/wpcarro/nixos/marcus/hardware.nix")
|
||||
|
@ -120,6 +126,7 @@ in {
|
|||
fzf
|
||||
git
|
||||
pavucontrol
|
||||
quasselClient
|
||||
ripgrep
|
||||
tdesktop
|
||||
tree
|
||||
|
|
Loading…
Reference in a new issue