Compare commits

...

2 commits

2 changed files with 16 additions and 2 deletions

View file

@ -65,7 +65,18 @@ in
nitrogen # wallpaper manager 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 = { xsession = {
enable = true; enable = true;

View file

@ -113,7 +113,10 @@ in
services.openssh = { services.openssh = {
enable = true; enable = true;
settings.PasswordAuthentication = true; settings = {
PasswordAuthentication = true;
MaxAuthTries = 1;
};
hostKeys = [ hostKeys = [
{ {
bits = 4096; bits = 4096;