about summary refs log tree commit diff
path: root/modules/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'modules/profiles')
-rw-r--r--modules/profiles/common.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/profiles/common.nix b/modules/profiles/common.nix
new file mode 100644
index 00000000..21a22358
--- /dev/null
+++ b/modules/profiles/common.nix
@@ -0,0 +1,11 @@
+{ config, ... }:
+
+{
+  nixpkgs.config.packageOverrides = pkgs: {
+    vuizvui = import ../../pkgs {
+      # We need to make sure to incorporate other package overrides,
+      # otherwise we are unable to override packages in vuizvui.*.
+      pkgs = pkgs // config.nixpkgs.config.packageOverrides pkgs;
+    };
+  };
+}