move hyprland to a separate file, testing to resolve config conflict

This commit is contained in:
Gabriella Bere 2024-12-19 22:15:37 +00:00
parent 07e5b92df4
commit c079f07485
2 changed files with 39 additions and 37 deletions

View file

@ -16,7 +16,7 @@
./swaync.nix
./flatpak.nix
./sober.nix
# ./librewolf.nix
./hyprlock.nix
./zsh.nix
./eza.nix
./nixvim.nix
@ -119,41 +119,6 @@
# ];
# };
# };
programs.hyprlock = {
enable = true;
settings = {
general = {
disable_loading_bar = true;
grace = 0;
hide_cursor = true;
no_fade_in = false;
};
background = [
{
path = "screenshot";
blur_passes = 3;
blur_size = 8;
}
];
input-field = [
{
size = "200, 50";
position = "0, -80";
monitor = "eDP-2";
dots_center = true;
fade_on_empty = false;
font_color = "rgb(202, 211, 245)";
inner_color = "rgb(91, 96, 120)";
outer_color = "rgb(24, 25, 38)";
outline_thickness = 5;
# placeholder_text = "<span foreground="##cad3f5">Password...</span>";
# shadow_passes = 2;
}
];
};
};
services.blueman-applet.enable = true;
programs.btop.enable = true;

37
home-manager/hyprlock.nix Normal file
View file

@ -0,0 +1,37 @@
{pkgs, ... }: {
programs.hyprlock = {
enable = true;
settings = {
general = {
disable_loading_bar = true;
grace = 0;
hide_cursor = true;
no_fade_in = false;
};
background = [
{
path = "screenshot";
blur_passes = 3;
blur_size = 8;
}
];
input-field = [
{
size = "200, 50";
position = "0, -80";
monitor = "eDP-2";
dots_center = true;
fade_on_empty = false;
font_color = "rgb(202, 211, 245)";
inner_color = "rgb(91, 96, 120)";
outer_color = "rgb(24, 25, 38)";
outline_thickness = 5;
# placeholder_text = "<span foreground="##cad3f5">Password...</span>";
# shadow_passes = 2;
}
];
};
};
}