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)
];
linger = true;
# Initial password for the account
password = "nixos";
initialPassword = "nixos";
packages = with pkgs; [
firefox
vivaldi

View file

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

View file

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