summary refs log tree commit diff
path: root/nixos/modules/services/networking/thelounge.nix
diff options
context:
space:
mode:
authorfortuneteller2k <lythe1107@gmail.com>2021-07-08 00:45:21 +0800
committerfortuneteller2k <lythe1107@gmail.com>2022-01-10 11:28:41 +0800
commit38e1dbd942d63cc8712d9f949c126f1fcdde59df (patch)
tree7dc9206d3ed13a51040ead4e99c558d0359ed85a /nixos/modules/services/networking/thelounge.nix
parent6a7bafcb0fd068716ca6659e59d197044c41a9a7 (diff)
downloadnixpkgs-38e1dbd942d63cc8712d9f949c126f1fcdde59df.tar
nixpkgs-38e1dbd942d63cc8712d9f949c126f1fcdde59df.tar.gz
nixpkgs-38e1dbd942d63cc8712d9f949c126f1fcdde59df.tar.bz2
nixpkgs-38e1dbd942d63cc8712d9f949c126f1fcdde59df.tar.lz
nixpkgs-38e1dbd942d63cc8712d9f949c126f1fcdde59df.tar.xz
nixpkgs-38e1dbd942d63cc8712d9f949c126f1fcdde59df.tar.zst
nixpkgs-38e1dbd942d63cc8712d9f949c126f1fcdde59df.zip
nixos/thelounge: private -> public
Co-authored-by: Winter <78392041+winterqt@users.noreply.github.com>
Diffstat (limited to 'nixos/modules/services/networking/thelounge.nix')
-rw-r--r--nixos/modules/services/networking/thelounge.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/nixos/modules/services/networking/thelounge.nix b/nixos/modules/services/networking/thelounge.nix
index 9a366c97fcb..a5118fd8b33 100644
--- a/nixos/modules/services/networking/thelounge.nix
+++ b/nixos/modules/services/networking/thelounge.nix
@@ -6,7 +6,7 @@ let
   cfg = config.services.thelounge;
   dataDir = "/var/lib/thelounge";
   configJsData = "module.exports = " + builtins.toJSON (
-    { private = cfg.private; port = cfg.port; } // cfg.extraConfig
+    { inherit (cfg) public port; } // cfg.extraConfig
   );
   pluginManifest = {
     dependencies = builtins.listToAttrs (builtins.map (pkg: { name = getName pkg; value = getVersion pkg; }) cfg.plugins);
@@ -20,14 +20,17 @@ let
   '';
 in
 {
+  imports = [ (mkRemovedOptionModule [ "services" "thelounge" "private" ] "The option was renamed to `services.thelounge.public` to follow upstream changes.") ];
+
   options.services.thelounge = {
     enable = mkEnableOption "The Lounge web IRC client";
 
-    private = mkOption {
+    public = mkOption {
       type = types.bool;
       default = false;
       description = ''
-        Make your The Lounge instance private. You will need to configure user
+        Make your The Lounge instance public.
+        Setting this to <literal>false</literal> will require you to configure user
         accounts by using the (<command>thelounge</command>) command or by adding
         entries in <filename>${dataDir}/users</filename>. You might need to restart
         The Lounge after making changes to the state directory.
@@ -79,7 +82,9 @@ in
       group = "thelounge";
       isSystemUser = true;
     };
+
     users.groups.thelounge = { };
+
     systemd.services.thelounge = {
       description = "The Lounge web IRC client";
       wantedBy = [ "multi-user.target" ];