The NIX_PATH assembly now walks over all keys in the given channel repositories and assembles a NIX_PATH entry from it. Previously it made assumptions about a set of hardcoded keys being available, which wasn't ideal as it didn't allow device-entries.
16 lines
358 B
Nix
16 lines
358 B
Nix
{ ... }:
|
|
|
|
{
|
|
nixpkgs.config.packageOverrides = pkgs: with pkgs; {
|
|
nixPath = (import ../../../default.nix { versionsPath = ./versions.nix; }).nixPath;
|
|
};
|
|
|
|
imports = [
|
|
../../profiles/common/configuration.nix
|
|
../../profiles/graphical/configuration.nix
|
|
../../profiles/removable-medium/configuration.nix
|
|
|
|
./system.nix
|
|
./hw.nix
|
|
];
|
|
}
|