Android : Enable Git signature read support.
This commit is contained in:
parent
56e3f9ec6c
commit
9adc056f6a
|
@ -13,47 +13,6 @@
|
|||
foreground=#${style.color.fg.light}
|
||||
'';
|
||||
in {
|
||||
# NOTE: Split into modules?
|
||||
environment.packages = with pkgs; [
|
||||
android-tools
|
||||
binwalk
|
||||
coreutils
|
||||
curl
|
||||
diffutils
|
||||
ffmpeg
|
||||
file
|
||||
findutils
|
||||
gawk
|
||||
gcc
|
||||
gdu
|
||||
git
|
||||
gnugrep
|
||||
gnumake
|
||||
gnused
|
||||
gnutar
|
||||
gzip
|
||||
hostname
|
||||
imagemagick
|
||||
jq
|
||||
lsof
|
||||
man
|
||||
neofetch
|
||||
nmap
|
||||
openssh
|
||||
parallel
|
||||
pv
|
||||
ripgrep
|
||||
rsync
|
||||
sqlite
|
||||
pkgs.tmux tmuxScript
|
||||
tree
|
||||
utillinux
|
||||
wget
|
||||
xz
|
||||
yt-dlp
|
||||
zip unzip
|
||||
];
|
||||
|
||||
time.timeZone = const.timeZone;
|
||||
nix.extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
|
@ -102,6 +61,9 @@ in {
|
|||
pull.rebase = true;
|
||||
push.autoSetupRemote = true;
|
||||
rebase.autoStash = true;
|
||||
user.signingkey = builtins.readFile secret.crypto.sign.key;
|
||||
gpg.ssh.allowedSignersFile = toString(secret.crypto.sign.allowed);
|
||||
gpg.format = secret.crypto.sign.format;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -118,4 +80,42 @@ in {
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
environment.packages = with pkgs; [
|
||||
android-tools
|
||||
binwalk
|
||||
coreutils
|
||||
curl
|
||||
diffutils
|
||||
ffmpeg
|
||||
file
|
||||
findutils
|
||||
gawk
|
||||
gcc
|
||||
gdu
|
||||
git
|
||||
gnugrep
|
||||
gnumake
|
||||
gnused
|
||||
gnutar
|
||||
gzip xz
|
||||
hostname
|
||||
imagemagick
|
||||
jq
|
||||
lsof
|
||||
man
|
||||
nmap
|
||||
openssh
|
||||
parallel
|
||||
pv
|
||||
ripgrep
|
||||
rsync
|
||||
sqlite
|
||||
pkgs.tmux tmuxScript
|
||||
tree
|
||||
utillinux
|
||||
wget
|
||||
yt-dlp
|
||||
zip unzip
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue