Compare commits
2 commits
ede2a1ef54
...
6a7276e96e
Author | SHA1 | Date | |
---|---|---|---|
6a7276e96e | |||
9d871d9f57 |
2 changed files with 16 additions and 2 deletions
|
@ -65,7 +65,18 @@ in
|
|||
nitrogen # wallpaper manager
|
||||
];
|
||||
|
||||
programs.rofi.pass.enable = true;
|
||||
programs.rofi.pass = {
|
||||
enable = true;
|
||||
extraConfig = ''
|
||||
EDITOR='wezterm start -- nvim'
|
||||
|
||||
URL_field='url'
|
||||
USERNAME_field='login'
|
||||
AUTOTYPE_field='autotype'
|
||||
|
||||
default_autotype='user :tab pass'
|
||||
'';
|
||||
};
|
||||
|
||||
xsession = {
|
||||
enable = true;
|
||||
|
|
|
@ -113,7 +113,10 @@ in
|
|||
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
settings.PasswordAuthentication = true;
|
||||
settings = {
|
||||
PasswordAuthentication = true;
|
||||
MaxAuthTries = 1;
|
||||
};
|
||||
hostKeys = [
|
||||
{
|
||||
bits = 4096;
|
||||
|
|
Loading…
Reference in a new issue