Compare commits
3 commits
2670ad97e8
...
a6568d4891
Author | SHA1 | Date | |
---|---|---|---|
a6568d4891 | |||
af43682e8b | |||
a91317ff35 |
3 changed files with 10 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -120,6 +120,9 @@ in
|
|||
truncation_length = 5;
|
||||
truncation_symbol = "…/";
|
||||
};
|
||||
hostname = {
|
||||
ssh_only = false;
|
||||
};
|
||||
username = {
|
||||
show_always = true;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue