diff --git a/homeConfigs/home.nix b/homeConfigs/home.nix index 843982a..e342951 100644 --- a/homeConfigs/home.nix +++ b/homeConfigs/home.nix @@ -6,7 +6,7 @@ # By: tomoron +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2024/10/17 18:15:38 by tomoron #+# #+# # -# Updated: 2025/02/12 16:49:55 by tomoron ### ########.fr # +# Updated: 2025/02/14 16:44:45 by tomoron ### ########.fr # # # # **************************************************************************** # @@ -73,6 +73,7 @@ home.file = { #should be able to make most of these in nix configs ".config/wallpaper.png".source = lib.mkDefault utils/wallpaper.png; + ".config/pc.jpg".source = lib.mkDefault utils/pc.jpg; ".local/share/rofi/themes".source = "${builtins.fetchGit { url = "https://github.com/newmanls/rofi-themes-collection"; diff --git a/homeConfigs/hosts/laptop.nix b/homeConfigs/hosts/laptop.nix index e1460d1..6c64f24 100644 --- a/homeConfigs/hosts/laptop.nix +++ b/homeConfigs/hosts/laptop.nix @@ -19,6 +19,10 @@ }; wayland.windowManager.hyprland.settings = { + workspace = [ + "1, monitor:eDP-1" + "2, monitor:HDMI-A-1, default:true" + ]; bind = [ ", XF86Launch1, exec, hyprlock" ", XF86Launch4, exec, pkill activate-linux" diff --git a/homeConfigs/modules/wayland/hyprlock.nix b/homeConfigs/modules/wayland/hyprlock.nix index 2390654..04aac50 100644 --- a/homeConfigs/modules/wayland/hyprlock.nix +++ b/homeConfigs/modules/wayland/hyprlock.nix @@ -11,8 +11,8 @@ background = { monitor = ""; - path = "~/.config/wallpaper.png"; - blur_passes = 1; + path = "~/.config/pc.jpg"; +# blur_passes = 1; }; input-field = { diff --git a/homeConfigs/packages.nix b/homeConfigs/packages.nix index a65a820..704a1a4 100644 --- a/homeConfigs/packages.nix +++ b/homeConfigs/packages.nix @@ -6,7 +6,7 @@ # By: tomoron +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2025/02/09 22:01:56 by tomoron #+# #+# # -# Updated: 2025/02/12 12:53:12 by tomoron ### ########.fr # +# Updated: 2025/02/14 17:01:28 by tomoron ### ########.fr # # # # **************************************************************************** # @@ -31,5 +31,6 @@ yubico-pam dunst bibata-cursors + libcaca ]; } diff --git a/homeConfigs/utils/pc.jpg b/homeConfigs/utils/pc.jpg new file mode 100644 index 0000000..51a462f Binary files /dev/null and b/homeConfigs/utils/pc.jpg differ diff --git a/osConfigs/hosts/laptop.nix b/osConfigs/hosts/laptop.nix index bdfd986..29b0428 100644 --- a/osConfigs/hosts/laptop.nix +++ b/osConfigs/hosts/laptop.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ inputs, pkgs, ... }: { boot.kernelParams = [ "kvm.enable_virt_at_load=0" ];