fix: switched to a rooted phone
This commit is contained in:
11
README.md
11
README.md
@@ -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
|
||||
|
||||
```
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
../default/home/helix.nix
|
||||
../default/home/shell.nix
|
||||
];
|
||||
home.stateVersion = "23.11";
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user