chore: Remove uneeded old files

This commit is contained in:
punkfairie 2025-01-12 13:35:32 -08:00
parent f5ce6d6493
commit b24720d921
No known key found for this signature in database
GPG key ID: B3C5488E9A1A7CA6
5 changed files with 0 additions and 77 deletions

View file

@ -1,10 +0,0 @@
{ ... }:
{
programs.bun = {
enable = true;
settings = {
telemetry = false;
};
};
}

View file

@ -1,9 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
nixfmt-rfc-style
nil
statix
manix
];
}

View file

@ -1,8 +0,0 @@
{ ... }:
{
home.shellAbbrs = {
p = "php";
pa = "php artisan";
a = "php artisan";
};
}

View file

@ -1,42 +0,0 @@
{ pkgs, ... }:
{
packages = with pkgs; [
nix-direnv
gnupg
git
bitwarden-cli
];
scripts.download_gpg_key.exec = # bash
''
if ! bw login --check; then
echo "Please run `bw login`"
exit 1
fi
bw sync && \
bw get attachment private.key --itemid 335ce92f-974a-44d4-bc1c-b226005203f3 --output private.key && \
echo "Please run `set_gpg_tty && import_gpg_key`"
'';
scripts.set_gpg_tty.exec = # bash
''
export GPG_TTY="$(tty)"
'';
scripts.import_gpg_key.exec = # bash
''
exec gpg --import private.key
'';
scripts.gpg_no_pinentry.exec = # bash
''
pkill gpg-agent
gpg-agent --pinentry-program=/usr/bin/pinentry-curses --daemon
'';
scripts.git_allow_push.exec = # bash
''
git config http.version HTTP/1.1
'';
}

View file

@ -1,8 +0,0 @@
{ pkgs, ... }:
{
languages.nix.enable = true;
packages = with pkgs; [
nixfmt-rfc-style
];
}