about summary refs log tree commit diff
path: root/modules/profiles/common.nix
blob: 58d6c27bb4d8abde0bc80a1b3e153225de8901fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{ config, pkgs, lib, ... }:

with lib;

{
  options.vuizvui = {
    modifyNixPath = mkOption {
      type = types.bool;
      default = true;
      description = ''
        Whether to modify NIX_PATH for vuizvui, so that <nixpkgs> points
        to the path within the Nix channel instead of the
        <literal>nixpkgs</literal> or <literal>nixos</literal> channel from the
        root user.
      '';
    };

    enableGlobalNixpkgsConfig = mkOption {
      type = types.bool;
      default = false;
      description = ''
        Enabling this links <literal>nixos-config</literal> to be used by
        <literal>nixpkgs-config</literal>, which essentially means that
        attributes defined in <option>nixpkgs.config</option> are also in effect
        for user environments.
      '';
    };

    channelName = mkOption {
      type = types.str;
      default = "vuizvui";
      description = ''
        The channel name which is used to refer to <literal>vuizvui</literal>.
      '';
    };

    requiresTests = mkOption {
      type = types.listOf types.package;
      default = [];
      description = ''
        A list of derivations which have to succeed in order to trigger a
        channel update for the current configuration/machine.
      '';
    };
  };

  config = let
    nixpkgs = import ../../nixpkgs-path.nix;
    system = config.nixpkgs.system;

  in {
    nixpkgs.config.packageOverrides = pkgs: {
      # XXX: REAAAALLLY UGLY hack to force the Headcounter Hydra to rebuild GHC
      # and all its packages and not use binary substitution.
      haskellPackages = pkgs.haskellPackages.override {
        ghc = pkgs.haskellPackages.ghc.overrideDerivation (const {
          forceRebuild = true;
        });
      };

      inherit (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;
      }) vuizvui;
    };

    nix.binaryCachePublicKeys = [
      "headcounter.org:/7YANMvnQnyvcVB6rgFTdb8p5LG1OTXaO+21CaOSBzg="
    ];

    environment.variables.NIXPKGS_CONFIG = let
      nixpkgsCfg = toString (pkgs.writeText "nixpkgs-try-config.nix" ''
        if (builtins.tryEval <nixpkgs-config>).success
        then import <nixpkgs-config>
        else {}
      '');
    in mkIf config.vuizvui.enableGlobalNixpkgsConfig (mkForce nixpkgsCfg);

    nix.nixPath = let
      rootChannelsPath = "/nix/var/nix/profiles/per-user/root/channels";
      channelPath = "${rootChannelsPath}/${config.vuizvui.channelName}";
      nixosConfig = "/etc/nixos/configuration.nix";
      nixpkgsConfig = "nixpkgs-config=${pkgs.writeText "nixpkgs-config.nix" ''
        (import ${nixpkgs}/nixos/lib/eval-config.nix {
          modules = [ ${nixosConfig} ];
        }).config.nixpkgs.config
      ''}";
      nixPath = [
        "vuizvui=${channelPath}"
        "nixpkgs=${channelPath}/nixpkgs"
        "nixos-config=${nixosConfig}"
        rootChannelsPath
      ] ++ optional config.vuizvui.enableGlobalNixpkgsConfig nixpkgsConfig;
    in mkIf config.vuizvui.modifyNixPath (mkOverride 90 nixPath);

    _module.args.tests = import ../../lib/get-tests.nix {
      inherit nixpkgs system;
    };
  };
}