nix-on-droid: install ncurses

why isn't this present in the default config?
This commit is contained in:
NullBite 2024-03-27 12:12:46 -04:00
parent d591f3a40d
commit cc61c1c1fa
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A
2 changed files with 7 additions and 0 deletions
flake.nix
users/nix-on-droid

@ -328,6 +328,7 @@
"nix-on-droid" = mkHome {
username = "nix-on-droid";
homeDirectory = "/data/data/com.termux.nix/files/home";
modules = [ ./users/nix-on-droid/home.nix ];
system = "aarch64-linux";
stateVersion = "23.11";
nixpkgs = inputs.nixpkgs-unstable;

@ -0,0 +1,6 @@
{ pkgs, config, lib, ... }:
{
home.packages = with pkgs; [
ncurses
];
}