summary refs log tree commit diff
path: root/pkgs-ng/system/user-environment.fix
blob: 40e8008281c585995d934421cc9977fa9ff2d6a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Given a system identifier, this function returns a derivation of a
# user environment, i.e., a set of symbolic links to `activated'
# packages.  The resulting package is typically passed to the
# `nix-switch' command in order to actually activate it.

{system}: let {
  # All activated packages.
  pkgs = (import ./all-packages.fix) {system = system};

  # This 
  selectedPkgs =
    [ pkgs.aterm
    ];

  body = derivation { 
    name = "user-environment";
    system = system;
    builder = ./populate-linkdirs.pl;
    dirs = selectedPkgs;
  };
}