Updated ignores.

This commit is contained in:
2025-08-15 18:10:28 -04:00
parent c9ff287462
commit 9d4573f30d
2 changed files with 30 additions and 1 deletions

1
.gitignore vendored
View File

@@ -2,3 +2,4 @@
*.kate-swp
result/*
result
.irssi/certs

View File

@@ -18,6 +18,11 @@
recursive = true;
executable = true;
};
home.file.".irssi" = {
source = ./home/.irssi;
recursive = true;
executable = true;
};
home.file.".config/dosbox-x" = {
source = ./home/config/dosbox-x;
recursive = true;
@@ -33,6 +38,7 @@
p7zip
ripgrep
jq
ripgrep
eza
fzf
tmux
@@ -46,6 +52,7 @@
which
nix-output-monitor
devenv
irssi
luarocks
lua5_1
gimp
@@ -227,22 +234,43 @@
bind F3 send-keys 'igrep .' C-m
'';
};
home.file.".ssh/allowed_signers".text = ''
* ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH8P/3yzsruekSaZ9b+yk429VTcfCtI1j8jnkNbPAgnr th3r00t@nixos
'';
programs.git = {
enable = true;
userName = "th3r00t";
userEmail = "tty303@proton.me";
extraConfig = {
commit.gpgSign = true;
gpg.format = "ssh";
gpg.ssh.allowedSignersFile = "~/.ssh/allowed_signers";
user.signingkey = "~/.ssh/id_ed25519.pub";
};
};
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
programs.foot = {
enable = true;
settings = {
main = {
term = "tmux-256color";
font = "FiraCode Nerd Font Mono:size=6";
dpi-aware = "yes";
shell = "${pkgs.zsh}/bin/zsh";
};
mouse = { hide-when-typing = "yes"; };
cursor = { style = "block"; blink = "yes"; };
};
};
programs.eza = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
};
# starship - an customizable prompt for any shell
programs.starship = {
enable = true;