about summary refs log tree commit diff
path: root/modules/profiles/common.nix
blob: 21a22358ba408ed012b87eef03306dce2069d6d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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;
    };
  };
}