chore: Remove uneeded old files
This commit is contained in:
parent
f5ce6d6493
commit
b24720d921
5 changed files with 0 additions and 77 deletions
|
@ -1,10 +0,0 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.bun = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
telemetry = false;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
nixfmt-rfc-style
|
||||
nil
|
||||
statix
|
||||
manix
|
||||
];
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{ ... }:
|
||||
{
|
||||
home.shellAbbrs = {
|
||||
p = "php";
|
||||
pa = "php artisan";
|
||||
a = "php artisan";
|
||||
};
|
||||
}
|
|
@ -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
|
||||
'';
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
languages.nix.enable = true;
|
||||
|
||||
packages = with pkgs; [
|
||||
nixfmt-rfc-style
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue