about summary refs log tree commit diff
path: root/home/profiles/communication
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-06-02 22:11:08 +0900
committersefidel <contact@sefidel.net>2023-06-02 22:11:08 +0900
commit1642de788ccac8098d944066184a0c71b7a8e537 (patch)
treeeb6ddd182008486a6ac6234b997113d346f9dcc0 /home/profiles/communication
parentfab665812fa1d507fbfb0fc143afe873163b7d36 (diff)
downloadnixrc-1642de788ccac8098d944066184a0c71b7a8e537.tar.gz
nixrc-1642de788ccac8098d944066184a0c71b7a8e537.zip
fix(darwin/kompakt-darwin): fixup
Diffstat (limited to 'home/profiles/communication')
-rw-r--r--home/profiles/communication/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/home/profiles/communication/default.nix b/home/profiles/communication/default.nix
index 76f73b2..4c46b83 100644
--- a/home/profiles/communication/default.nix
+++ b/home/profiles/communication/default.nix
@@ -14,7 +14,7 @@ let
     });
   mbsyncCmd = if pkgs.stdenv.isLinux then "${config.programs.mbsync.package}/bin/mbsync" else "";
   # https://github.com/Mic92/sops-nix/issues/284
-  fixSopsPrefix = x: y: builtins.replaceStrings ["%r"] ["/run/user/${toString x}"] y;
+  fixSopsPrefix = x: y: builtins.replaceStrings [ "%r" ] [ "/run/user/${toString x}" ] y;
 in
 {
   imports = [ ../../modules/programs/nixpkgs ];
@@ -400,7 +400,6 @@ in
         slack
         discord-canary
         schildichat-desktop-wayland
-        nheko
         (weechat.override {
           configure = { availablePlugins, ... }: {
             plugins = [
@@ -414,6 +413,9 @@ in
             ];
           };
         })
+      ] ++ pkgs.lib.optionals (pkgs.stdenv.isLinux) [
+        # TODO: currently broken/doesn't support Darwin
+        pkgs.nheko
       ];
 
       nixpkgs.allowedUnfree = [ "slack" "discord-canary" ];