summaryrefslogtreecommitdiff
path: root/hm/soft
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-05-17 01:05:14 +0200
committeradikro <adikro@disroot.org>2026-05-17 01:05:14 +0200
commitdec36d2e9aaca7ca7149a244aa984e97925a3dba (patch)
treebdf3ec35e101beaa4e74c48930dca4341d48ae2c /hm/soft
parent8bedd672ac49617d2e3a808efe470228cbb0240d (diff)
moved ssh and tailscale to srv, revamped netwroking modules
Diffstat (limited to 'hm/soft')
-rw-r--r--hm/soft/chat.nix1
-rw-r--r--hm/soft/spicetify.nix2
2 files changed, 2 insertions, 1 deletions
diff --git a/hm/soft/chat.nix b/hm/soft/chat.nix
index 57cd6f7..d7f0020 100644
--- a/hm/soft/chat.nix
+++ b/hm/soft/chat.nix
@@ -11,6 +11,7 @@ in
options.hm.soft.chat.enable = lib.mkEnableOption "chatting apps";
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
+ simplex-chat-desktop
signal-desktop
equibop
gajim
diff --git a/hm/soft/spicetify.nix b/hm/soft/spicetify.nix
index 98aebe3..f9a4d0c 100644
--- a/hm/soft/spicetify.nix
+++ b/hm/soft/spicetify.nix
@@ -7,7 +7,7 @@
}:
let
cfg = config.hm.soft.spicetify;
- spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
+ spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
in
{
imports = [ inputs.spicetify-nix.homeManagerModules.default ];