diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2023-06-01 23:01:36 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2023-06-01 23:01:36 +0200 |
commit | 1742a74e3251188fcfd8ebcef1a84a4b3c596d40 (patch) | |
tree | e75d45c812cdb9214b0af5a01e28fcd4f0027f6b | |
parent | Home: Use gnome-keyring instead of pass-secret-service (diff) | |
download | nixos-config-1742a74e3251188fcfd8ebcef1a84a4b3c596d40.tar.gz nixos-config-1742a74e3251188fcfd8ebcef1a84a4b3c596d40.tar.bz2 nixos-config-1742a74e3251188fcfd8ebcef1a84a4b3c596d40.zip |
Update
-rw-r--r-- | flake.lock | bin | 6348 -> 6348 bytes | |||
-rw-r--r-- | hardware/virtualbox/hardware.nix | 1 | ||||
-rw-r--r-- | hosts/configuration.nix | 6 |
3 files changed, 4 insertions, 3 deletions
diff --git a/flake.lock b/flake.lock index 94d8138..3867d3e 100644 --- a/flake.lock +++ b/flake.lock Binary files differdiff --git a/hardware/virtualbox/hardware.nix b/hardware/virtualbox/hardware.nix index a98a9df..7e6e38f 100644 --- a/hardware/virtualbox/hardware.nix +++ b/hardware/virtualbox/hardware.nix @@ -18,6 +18,7 @@ services.xserver = { # Enable touchpad support (enabled default in most desktopManager). + synaptics.enable = false; libinput.enable = true; }; diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 1be0c27..ed4fca4 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -20,7 +20,6 @@ }; grub = { enable = true; - version = 2; efiSupport = true; efiInstallAsRemovable = true; device = "nodev"; @@ -145,8 +144,8 @@ openssh = { enable = true; settings = { - passwordAuthentication = false; - kbdInteractiveAuthentication = false; + PasswordAuthentication = false; + KbdInteractiveAuthentication = false; }; listenAddresses = [{ addr = "0.0.0.0"; @@ -158,6 +157,7 @@ dbus.enable = true; irqbalance.enable = true; fwupd.enable = true; + xserver.libinput.enable = false; }; programs = { |