Files
dotfiles/nix-on-droid.nix
Lennart J. Kurzweg (Nx2) d81aa406a4 nod
2025-09-03 19:46:44 +02:00

26 lines
567 B
Nix

{ pkgs, ... }@all:
{
environment = {
packages = import ./system-modules/base-packages.nix pkgs;
etcBackupExtension = ".bak";
};
android-integration = {
termux-setup-storage.enable = true;
};
system.stateVersion = pkgs.version;
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
# Set your time zone
time.timeZone = "Europe/Berlin";
home-manager = {
config = ./shell-only.nix;
useGlobalPkgs = true;
backupFileExtension = "backup";
extraSpecialArgs = { inherit (all) inputs hyper rice; };
};
}