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)
|
(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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue