1

fix: switched to a rooted phone

This commit is contained in:
Himadri Bhattacharjee
2025-10-17 18:18:19 +05:30
parent dadeea22d8
commit aa3e496c75
3 changed files with 0 additions and 63 deletions

View File

@@ -35,17 +35,6 @@ git clone https://github.com/lavafroth/dotfiles
sudo nixos-rebuild switch --flake dotfiles#rahu
```
### Android (Nix-on-droid)
I use Nix-on-droid to have Termux with a declarative config. Install
[Nix-on-droid from F-Droid](https://f-droid.org/en/packages/com.termux.nix/) and
enable flakes when prompted. Clone this repo and rebuild the environment.
```sh
git clone https://github.com/lavafroth/dotfiles
nix-on-droid switch --flake dotfiles
```
### Running blender with CUDA
```

View File

@@ -1,8 +0,0 @@
{ pkgs, ... }:
{
imports = [
../default/home/helix.nix
../default/home/shell.nix
];
home.stateVersion = "23.11";
}

View File

@@ -1,44 +0,0 @@
{
pkgs,
...
}:
{
environment.packages = with pkgs; [
ouch
fd
diffutils
binutils
coreutils
#tzdata
hostname
man
gitMinimal
rage
nerd-fonts.terminess-ttf
ripgrep
gnused
gnutar
mdcat
openssh
yt-dlp
];
# Backup etc files instead of failing to activate generation if a file already exists in /etc
environment.etcBackupExtension = ".bak";
# Read the changelog before changing this value
system.stateVersion = "23.11";
# Set up nix for flakes
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
user.shell = "${pkgs.fish}/bin/fish";
terminal.font = "${pkgs.nerd-fonts.terminess-ttf}/share/fonts/truetype/NerdFonts/TerminessNerdFont-Regular.ttf";
# Set your time zone
# time.timeZone = "Europe/Berlin";
home-manager.config = ./home.nix;
}