mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
30 lines
481 B
Nix
30 lines
481 B
Nix
# Copyright (c) 2019-2021, see AUTHORS. Licensed under MIT License, see LICENSE.
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = { };
|
|
|
|
|
|
###### implementation
|
|
|
|
config = {
|
|
|
|
environment.etc = {
|
|
"profile".text = ''
|
|
. "${config.build.sessionInit}/etc/profile.d/nix-on-droid-session-init.sh"
|
|
'';
|
|
|
|
"zshenv".text = ''
|
|
. "${config.build.sessionInit}/etc/profile.d/nix-on-droid-session-init.sh"
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
}
|