diff --git a/home-manager/hosts/luci.nix b/home-manager/hosts/luci.nix index 97d99c2..3132ffd 100644 --- a/home-manager/hosts/luci.nix +++ b/home-manager/hosts/luci.nix @@ -1,15 +1,23 @@ _: { - wayland.windowManager.sway.config.input = { - "1:1:AT_Translated_Set_2_keyboard" = { - xkb_layout = "us"; - xkb_variant = "altgr-intl"; + wayland.windowManager.sway.config = { + input = { + "1:1:AT_Translated_Set_2_keyboard" = { + xkb_layout = "us"; + xkb_variant = "altgr-intl"; + }; + + "2:7:SynPS/2_Synaptics_TouchPad" = { + "tap" = "enable"; + "accel_profile" = "adaptive"; + "dwt" = "enable"; + "pointer_accel" = "0.3"; + }; }; - "2:7:SynPS/2_Synaptics_TouchPad" = { - "tap" = "enable"; - "accel_profile" = "adaptive"; - "dwt" = "enable"; - "pointer_accel" = "0.3"; + output = { + "eDP-1" = { + bg = "~/medias/images/wallpapers/wallpaper.png center #000000"; + }; }; }; } diff --git a/hosts/luci/hardware-configuration.nix b/hosts/luci/hardware-configuration.nix index 10066e8..96ffe4b 100644 --- a/hosts/luci/hardware-configuration.nix +++ b/hosts/luci/hardware-configuration.nix @@ -53,5 +53,8 @@ hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.opengl.enable = true; hardware.opengl.driSupport = true; + + virtualisation.virtualbox.host.enable = true; + users.extraGroups.vboxusers.members = [ "ephase" ]; hardware.opengl.driSupport32Bit = true; }