mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 19:46:07 +01:00
21 lines
526 B
Nix
21 lines
526 B
Nix
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
|
|
|
|
{ pkgs, isFlake }:
|
|
|
|
[
|
|
./build/activation.nix
|
|
./build/config.nix
|
|
./environment/etc
|
|
./environment/files.nix
|
|
./environment/links.nix
|
|
./environment/login
|
|
./environment/networking.nix
|
|
./environment/path.nix
|
|
./environment/session-init.nix
|
|
./home-manager.nix
|
|
./time.nix
|
|
./user.nix
|
|
./version.nix
|
|
./workaround-make.nix
|
|
(pkgs.path + "/nixos/modules/misc/assertions.nix")
|
|
] ++ pkgs.lib.optionals (!isFlake) [ ./nixpkgs.nix ]
|