diff --git a/modules/home/common/desktop/default.nix b/modules/home/common/desktop/default.nix index 351b100..21f4d24 100644 --- a/modules/home/common/desktop/default.nix +++ b/modules/home/common/desktop/default.nix @@ -25,6 +25,7 @@ ]; }) fontconfig + signal-desktop ]; fonts.fontconfig.enable = true; diff --git a/modules/system/common/default.nix b/modules/system/common/default.nix index 8693f1e..4b4fa57 100644 --- a/modules/system/common/default.nix +++ b/modules/system/common/default.nix @@ -37,6 +37,8 @@ let # NixOS' fish module doesn't allow setting what package to use for fish, # so I need to override the fish package. nixpkgs.overlays = [ (_: _: { inherit (inputs'.settei.packages) fish; }) ]; + # TODO: Move to home/common/desktop + nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "signal-desktop" ]; nix.settings.allow-import-from-derivation = false; };