You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nixos-template-base/release.nix

18 lines
420 B
Nix

8 years ago
{ supportedSystems ? [ "x86_64-linux" ]
, nixpkgs ? import <nixpkgs> {}
8 years ago
, config ? import ./config-generator.nix
, ...
8 years ago
}:
with (import <nixpkgs/pkgs/top-level/release-lib.nix> { inherit supportedSystems; });
8 years ago
{
8 years ago
#r6d.base = import ./r6d-base.nix;
8 years ago
r6d = {
#= import ./iso-image/configuration.nix;
8 years ago
applications.terminal.cao = import ./applications/terminal/cao.nix {
config = self.config;
};
8 years ago
};
8 years ago
}