Updated ignores.
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -2,3 +2,4 @@
|
||||
*.kate-swp
|
||||
result/*
|
||||
result
|
||||
.irssi/certs
|
||||
|
||||
30
home.nix
30
home.nix
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user