mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 19:46:07 +01:00
This allows evaluation of configurations where nixpkgs.* options are used even when in a flake setup with unchanged default values.
22 lines
554 B
Nix
22 lines
554 B
Nix
# Copyright (c) 2019-2021, see AUTHORS. Licensed under MIT License, see LICENSE.
|
|
|
|
{ pkgs, isFlake }:
|
|
|
|
[
|
|
./build/activation.nix
|
|
./build/config.nix
|
|
./environment/ca.nix
|
|
./environment/etc
|
|
./environment/links.nix
|
|
./environment/login
|
|
./environment/networking.nix
|
|
./environment/nix.nix
|
|
./environment/path.nix
|
|
./environment/session-init.nix
|
|
./home-manager.nix
|
|
./nixpkgs/options.nix
|
|
./time.nix
|
|
./user.nix
|
|
./version.nix
|
|
(pkgs.path + "/nixos/modules/misc/assertions.nix")
|
|
] ++ pkgs.lib.optionals (!isFlake) [ ./nixpkgs/config.nix ]
|