syncthing

This commit is contained in:
Lilith 2024-06-08 21:26:58 +02:00
parent da80e76c8d
commit bb7f4afae3
Signed by: lilith
GPG key ID: 8712A0F317C37175
16 changed files with 158 additions and 57 deletions

View file

@ -1,10 +1,12 @@
{...}: {
{ system-config, lib, ...}: {
imports = [
./hyprgrass.nix
./utils.nix
# ./hyprgrass.nix
# ./utils.nix
];
wayland.windowManager.hyprland = {
wayland.windowManager = let
hyprDefaults = {
enable = true;
xwayland.enable = true;
@ -16,8 +18,7 @@
"$fileManager" = "alacritty -e ranger";
monitor = [
"eDP-1, 1920x1080, 0x0, 1"
",preferred,auto,1"
",preferred,1"
];
exec-once = [
@ -55,8 +56,8 @@
gaps_in = 5;
gaps_out = 5;
border_size = 2;
"col.active_border" = "rgba(5bcefaee) rgba(f5a9b8ee) 45deg";
"col.inactive_border" = "rgba(595959aa)";
# "col.active_border" = "rgba(5bcefaee) rgba(f5a9b8ee) 45deg";
# "col.inactive_border" = "rgba(595959aa)";
layout = "dwindle";
@ -75,7 +76,7 @@
drop_shadow = true;
shadow_range = 4;
shadow_render_power = 3;
"col.shadow" = "rgba(1a1a1aee)";
# "col.shadow" = "rgba(1a1a1aee)";
};
animations = {
@ -170,4 +171,7 @@
];
};
};
in {
hyprland = lib.recursiveUpdate hyprDefaults system-config.hyprlandOverrides;
};
}