diff --git a/hosts/luci/files/lockscreen.png b/hosts/luci/files/lockscreen.png new file mode 100644 index 0000000..4094671 Binary files /dev/null and b/hosts/luci/files/lockscreen.png differ diff --git a/hosts/luci/files/wallpaper.png b/hosts/luci/files/wallpaper.png new file mode 100644 index 0000000..cc73b58 Binary files /dev/null and b/hosts/luci/files/wallpaper.png differ diff --git a/hosts/luci/includes/home-manager.nix b/hosts/luci/includes/home-manager.nix new file mode 100644 index 0000000..068a9a8 --- /dev/null +++ b/hosts/luci/includes/home-manager.nix @@ -0,0 +1,25 @@ +_: +{ + ## Specific host home manager configuration + 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"; + }; + }; + + output = { + "*" = { + bg = "${../files/wallpaper.png} center #000000"; + }; + }; + }; +} diff --git a/nixos/default.nix b/nixos/default.nix index ac970c6..a32272a 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -55,8 +55,8 @@ ../hosts/${hostname}/home-config.nix ../modules/home-manager/default.nix ] ++ lib.optional ( - builtins.pathExists ../home-manager/hosts/${hostname}.nix - ) ../home-manager/hosts/${hostname}.nix; + builtins.pathExists ../hosts/${hostname}/includes/home-manager.nix + ) ../hosts/${hostname}/includes/home-manager.nix; }; };