Compare commits

...

3 commits

3 changed files with 10 additions and 2 deletions

View file

@ -14,8 +14,7 @@
(if config.programs.adb.enable then "adbusers" else null) (if config.programs.adb.enable then "adbusers" else null)
]; ];
linger = true; linger = true;
# Initial password for the account initialPassword = "nixos";
password = "nixos";
packages = with pkgs; [ packages = with pkgs; [
firefox firefox
vivaldi vivaldi

View file

@ -29,6 +29,12 @@
ddrescue ddrescue
]; ];
programs.git.config = {
init.defaultBranch = "main";
merge.conflictstyle = "diff3";
rerere.enabled = true;
};
# Enable fail2ban because of the OpenSSH server # Enable fail2ban because of the OpenSSH server
services.fail2ban = { services.fail2ban = {
enable = true; enable = true;

View file

@ -120,6 +120,9 @@ in
truncation_length = 5; truncation_length = 5;
truncation_symbol = "/"; truncation_symbol = "/";
}; };
hostname = {
ssh_only = false;
};
username = { username = {
show_always = true; show_always = true;
}; };