🔒 Replaced swaylock with Hyprlock
- Removed Swaylock - Added Hyprlock with Catppuccin theme. - Replaced commands to swaylock with hyprlock. - Added JetBrains Mono Nerd Font
This commit is contained in:
parent
793b3a16d0
commit
1c9dded45c
@ -44,6 +44,13 @@
|
|||||||
NIXOS_CONFIG_PATH = "/etc/nixos";
|
NIXOS_CONFIG_PATH = "/etc/nixos";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fonts = {
|
||||||
|
fontconfig.enable = true;
|
||||||
|
packages = with pkgs; [
|
||||||
|
nerd-fonts.jetbrains-mono
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
@ -42,9 +42,6 @@ in
|
|||||||
enable = true;
|
enable = true;
|
||||||
settings = (with builtins; fromTOML (readFile ./starship.toml)) // { };
|
settings = (with builtins; fromTOML (readFile ./starship.toml)) // { };
|
||||||
};
|
};
|
||||||
|
|
||||||
# Lock desktop
|
|
||||||
swaylock.enable = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
./hyprcursor
|
./hyprcursor
|
||||||
./waybar
|
./waybar
|
||||||
./hypridle
|
./hypridle
|
||||||
|
./hyprlock
|
||||||
];
|
];
|
||||||
|
|
||||||
home.file.".config/hypr/hyprland.conf".source = ./hyprland.conf;
|
home.file.".config/hypr/hyprland.conf".source = ./hyprland.conf;
|
||||||
|
@ -301,7 +301,7 @@ bind = $mainMod, R, exec, $menu
|
|||||||
bind = $mainMod, P, pseudo, # dwindle
|
bind = $mainMod, P, pseudo, # dwindle
|
||||||
bind = $mainMod, J, togglesplit, # dwindle
|
bind = $mainMod, J, togglesplit, # dwindle
|
||||||
bind = $mainMod, B, exec, $browser
|
bind = $mainMod, B, exec, $browser
|
||||||
bind = $mainMod, L, exec, swaylock & disown
|
bind = $mainMod, L, exec, hyprlock
|
||||||
|
|
||||||
# Move focus with mainMod + arrow keys
|
# Move focus with mainMod + arrow keys
|
||||||
bind = $mainMod, left, movefocus, l
|
bind = $mainMod, left, movefocus, l
|
||||||
|
95
home/hyprland/hyprlock/default.nix
Normal file
95
home/hyprland/hyprlock/default.nix
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
{ lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.file.".face.png".source = ./face.png;
|
||||||
|
# TODO style face and wallpaper
|
||||||
|
programs.hyprlock = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
"$base" = "rgb(1e1e2e)";
|
||||||
|
"$text" = "rgb(cdd6f4)";
|
||||||
|
"$textAlpha" = "cdd6f4";
|
||||||
|
"$mauve" = "rgb(cba6f7)";
|
||||||
|
"$mauveAlpha" = "cba6f7";
|
||||||
|
"$red" = "rgb(f38ba8)";
|
||||||
|
"$yellow" = "rgb(f9e2af)";
|
||||||
|
"$accent" = "$mauve";
|
||||||
|
"$accentAlpha" = "$mauveAlpha";
|
||||||
|
"$surface0" = "rgb(313244)";
|
||||||
|
"$font" = "JetBrainsMono Nerd Font";
|
||||||
|
|
||||||
|
# GENERAL
|
||||||
|
general = {
|
||||||
|
disable_loading_bar = true;
|
||||||
|
hide_cursor = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# LAYOUT
|
||||||
|
label = [
|
||||||
|
{
|
||||||
|
text = "$LAYOUT";
|
||||||
|
color = "$text";
|
||||||
|
font_size = 25;
|
||||||
|
font_family = "$font";
|
||||||
|
position = "30, -30";
|
||||||
|
halign = "left";
|
||||||
|
valign = "top";
|
||||||
|
}
|
||||||
|
|
||||||
|
# TIME
|
||||||
|
{
|
||||||
|
text = "$TIME";
|
||||||
|
color = "$text";
|
||||||
|
font_size = 90;
|
||||||
|
font_family = "$font";
|
||||||
|
position = "-30, 0";
|
||||||
|
halign = "right";
|
||||||
|
valign = "top";
|
||||||
|
}
|
||||||
|
|
||||||
|
# DATE
|
||||||
|
{
|
||||||
|
text = "cmd[update:43200000] date +\"%A, %d %B %Y\"";
|
||||||
|
color = "$text";
|
||||||
|
font_size = 25;
|
||||||
|
font_family = "$font";
|
||||||
|
position = "-30, -150";
|
||||||
|
halign = "right";
|
||||||
|
valign = "top";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
# USER AVATAR
|
||||||
|
image = {
|
||||||
|
path = "~/.face.png";
|
||||||
|
size = 100;
|
||||||
|
border_color = "$accent";
|
||||||
|
position = "0, 75";
|
||||||
|
halign = "center";
|
||||||
|
valign = "center";
|
||||||
|
};
|
||||||
|
|
||||||
|
# INPUT FIELD
|
||||||
|
input-field = {
|
||||||
|
size = "300, 60";
|
||||||
|
outline_thickness = 4;
|
||||||
|
dots_size = 0.2;
|
||||||
|
dots_spacing = 0.2;
|
||||||
|
dots_center = true;
|
||||||
|
outer_color = lib.mkDefault "$accent";
|
||||||
|
inner_color = lib.mkDefault "$surface0";
|
||||||
|
font_color = lib.mkDefault "$text";
|
||||||
|
fade_on_empty = false;
|
||||||
|
placeholder_text = "<span foreground=\"##$textAlpha\"><i> Logged in as </i><span foreground=\"##$accentAlpha\">$USER</span></span>";
|
||||||
|
hide_input = false;
|
||||||
|
check_color = lib.mkDefault "$accent";
|
||||||
|
fail_color = lib.mkDefault "$red";
|
||||||
|
fail_text = "<i>$FAIL <b>($ATTEMPTS)</b></i>";
|
||||||
|
capslock_color = lib.mkDefault "$yellow";
|
||||||
|
position = "0, -47";
|
||||||
|
halign = "center";
|
||||||
|
valign = "center";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
BIN
home/hyprland/hyprlock/face.png
Normal file
BIN
home/hyprland/hyprlock/face.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 243 KiB |
@ -96,7 +96,7 @@
|
|||||||
},
|
},
|
||||||
"custom/lock": {
|
"custom/lock": {
|
||||||
"tooltip": false,
|
"tooltip": false,
|
||||||
"on-click": "sh -c '(sleep 0.5s; swaylock)' & disown",
|
"on-click": "sh -c '(sleep 0.5s; hyprlock)'",
|
||||||
"format": ""
|
"format": ""
|
||||||
},
|
},
|
||||||
"custom/power": {
|
"custom/power": {
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
layout = [
|
layout = [
|
||||||
{
|
{
|
||||||
label = "lock";
|
label = "lock";
|
||||||
action = "sh -c '(sleep 0.5s; swaylock)' & disown";
|
action = "sh -c '(sleep 0.5s; hyprlock)'";
|
||||||
text = "Lock";
|
text = "Lock";
|
||||||
keybind = "l";
|
keybind = "l";
|
||||||
}
|
}
|
||||||
|
@ -13,10 +13,13 @@
|
|||||||
hyprpolkitagent # Auth deamon providing modals for password auth
|
hyprpolkitagent # Auth deamon providing modals for password auth
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.hyprland = {
|
programs = {
|
||||||
enable = true;
|
hyprland = {
|
||||||
xwayland.enable = true;
|
enable = true;
|
||||||
|
xwayland.enable = true;
|
||||||
|
};
|
||||||
|
hyprlock.enable = true; # Lock screen
|
||||||
};
|
};
|
||||||
|
|
||||||
services.hypridle.enable = true;
|
services.hypridle.enable = true; # Lock when unused
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user