added atop, screen, rxvt; changed gitea verbosity
This commit is contained in:
parent
f1b0663985
commit
00605c831c
1 changed files with 28 additions and 21 deletions
|
|
@ -55,6 +55,8 @@
|
|||
wget
|
||||
htop
|
||||
git
|
||||
screen
|
||||
rxvt-unicode
|
||||
];
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
|
|
@ -103,25 +105,32 @@
|
|||
algorithm = "lzo-rle";
|
||||
};
|
||||
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
interactiveShellInit = ''
|
||||
source ${pkgs.grml-zsh-config}/etc/zsh/zshrc
|
||||
# Make user colour green in prompt instead of default blue
|
||||
#zstyle ':prompt:grml:left:items:user' pre '%F{green}%B'
|
||||
export QUOTING_STYLE=literal
|
||||
'';
|
||||
promptInit = ""; # otherwise it'll override the grml prompt
|
||||
syntaxHighlighting.enable = true;
|
||||
autosuggestions = {
|
||||
programs = {
|
||||
zsh = {
|
||||
enable = true;
|
||||
highlightStyle = "fg=cyan";
|
||||
interactiveShellInit = ''
|
||||
source ${pkgs.grml-zsh-config}/etc/zsh/zshrc
|
||||
# Make user colour green in prompt instead of default blue
|
||||
#zstyle ':prompt:grml:left:items:user' pre '%F{green}%B'
|
||||
export QUOTING_STYLE=literal
|
||||
'';
|
||||
promptInit = ""; # otherwise it'll override the grml prompt
|
||||
syntaxHighlighting.enable = true;
|
||||
autosuggestions = {
|
||||
enable = true;
|
||||
highlightStyle = "fg=cyan";
|
||||
};
|
||||
shellAliases = {
|
||||
"ip" = "ip -c";
|
||||
"nt" = "nixos-rebuild test";
|
||||
"ns" = "nixos-rebuild switch";
|
||||
"nsu" = "nixos-rebuild switch --upgrade";
|
||||
};
|
||||
};
|
||||
shellAliases = {
|
||||
"ip" = "ip -c";
|
||||
"nt" = "nixos-rebuild test";
|
||||
"ns" = "nixos-rebuild switch";
|
||||
"nsu" = "nixos-rebuild switch --upgrade";
|
||||
|
||||
atop = {
|
||||
enable = true;
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
|
|
@ -142,7 +151,7 @@
|
|||
enable = true;
|
||||
domain = "dev.mc-fucker.cool";
|
||||
rootUrl = "https://dev.mc-fucker.cool";
|
||||
log.level = "Info";
|
||||
log.level = "Warn";
|
||||
database = {
|
||||
createDatabase = false;
|
||||
host = "192.168.2.5";
|
||||
|
|
@ -158,13 +167,11 @@
|
|||
server = {
|
||||
START_SSH_SERVER = true;
|
||||
SSH_SERVER_HOST_KEYS = "ssh/gitea.ed25519";
|
||||
#SSH_SERVER_KEY_EXCHANGES = "curve25519-sha256@libssh.org";
|
||||
# SSH_PORT = 2222;
|
||||
# SSH_LISTEN_PORT = 2222;
|
||||
};
|
||||
};
|
||||
ssh.clonePort = 2222;
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue