feat: add nix-on-droid to flake

This commit is contained in:
matt1432 2023-12-08 14:59:44 -05:00
parent 13f0062331
commit 75a52aa5ae
5 changed files with 273 additions and 5 deletions
devices/android

View file

@ -0,0 +1,45 @@
{pkgs, ...}: {
vars = {
user = "nix-on-droid";
hostName = "localhost";
neovimIde = false;
};
terminal.font = "${(pkgs.nerdfonts.override {
fonts = [
"JetBrainsMono"
];
})}/share/fonts/truetype/NerdFonts/JetBrainsMonoNerdFontMono-Regular.ttf";
environment.packages = with pkgs; [
diffutils
findutils
utillinux
tzdata
hostname
man
gnugrep
ripgrep
gnupg
gnused
gnutar
bzip2
gzip
xz
zip
unzip
openssh
perl
alejandra
];
environment.etcBackupExtension = ".bak";
environment.motd = null;
home-manager.backupFileExtension = "hm-bak";
# Set your time zone.
time.timeZone = "America/Montreal";
# No touchy
system.stateVersion = "23.05";
}