Files
Olympus/system-config/configuration/android/default.nix
2025-08-25 12:50:37 -05:00

37 lines
873 B
Nix

{ config, lib, pkgs, inputs, ... }: {
config = {
home-manager = {
backupFileExtension = ".backup";
config = {
imports = [
inputs.nathan
];
config = {
homeconfig = {
wal.enable = true;
calcurse.enable = true;
};
home.homeDirectory = "/data/data/com.termux.nix/files/home";
};
};
};
terminal.font = "${pkgs.fira-code}/share/fonts/truetype/FiraCode-VF.ttf";
user = {
shell = "${pkgs.zsh}/bin/zsh";
};
android-integration = {};
system.stateVersion = "24.11";
environment = {
etcBackupExtension = ".backup";
motd = "";
};
};
}