fix deprecation warnings, add bat package
This commit is contained in:
parent
073ee05240
commit
1ffbe33e4a
1 changed files with 6 additions and 4 deletions
|
@ -46,7 +46,7 @@
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" "dotfiles" ];
|
extraGroups = [ "wheel" "dotfiles" ];
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
tree
|
tree bat
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -54,7 +54,9 @@
|
||||||
# Services - Openssh
|
# Services - Openssh
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
permitRootLogin = "no";
|
settings = {
|
||||||
|
PermitRootLogin = "no";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Services - Nginx
|
# Services - Nginx
|
||||||
|
@ -219,7 +221,7 @@
|
||||||
services.postgresql.enable = true;
|
services.postgresql.enable = true;
|
||||||
|
|
||||||
# Services - Redis
|
# Services - Redis
|
||||||
services.redis.enable = true;
|
services.redis.servers."".enable = true;
|
||||||
|
|
||||||
# Security
|
# Security
|
||||||
security = {
|
security = {
|
||||||
|
@ -228,7 +230,7 @@
|
||||||
|
|
||||||
security.acme = {
|
security.acme = {
|
||||||
acceptTerms = true;
|
acceptTerms = true;
|
||||||
email = "reidlab325@gmail.com";
|
defaults.email = "reidlab325@gmail.com";
|
||||||
};
|
};
|
||||||
|
|
||||||
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue