diff --git a/modules/core/terminal/foot/dots/default.nix b/modules/core/terminal/foot/dots/default.nix index e35bf24..391dc5a 100644 --- a/modules/core/terminal/foot/dots/default.nix +++ b/modules/core/terminal/foot/dots/default.nix @@ -3,11 +3,11 @@ home-manager.users.${username} = _: { home.file = { ".config/foot/foot.ini".text = '' - font=M+1Code Nerd Font:size=13 + font=Jetbrains Mono:size=13 pad=15x15 [colors] - alpha=0.8 + alpha=0.5 background=232136 ''; }; diff --git a/modules/hyprland/default.nix b/modules/hyprland/default.nix index 44f0754..79f8ba3 100644 --- a/modules/hyprland/default.nix +++ b/modules/hyprland/default.nix @@ -13,7 +13,7 @@ ./hypridle ./hyprlock ./mako - #./swaylock + ./swaylock ./waybar ./wofi ]; diff --git a/modules/hyprland/hypridle/default.nix b/modules/hyprland/hypridle/default.nix index 6780f80..78b3930 100644 --- a/modules/hyprland/hypridle/default.nix +++ b/modules/hyprland/hypridle/default.nix @@ -8,7 +8,7 @@ ".config/hypr/hypridle.conf".text = '' general { - lock_cmd = pidof hyprlock || hyprlock # avoid starting multiple hyprlock instances. + lock_cmd = pidof swaylock || swaylock # avoid starting multiple hyprlock instances. before_sleep_cmd = loginctl lock-session # lock before suspend. after_sleep_cmd = hyprctl dispatch dpms on # to avoid having to press a key twice to turn on the display. } diff --git a/modules/hyprland/swaylock/default.nix b/modules/hyprland/swaylock/default.nix index a53a39f..b1c3f72 100644 --- a/modules/hyprland/swaylock/default.nix +++ b/modules/hyprland/swaylock/default.nix @@ -1,6 +1,5 @@ { pkgs, - home-manager, username, ... }: