changed formater

This commit is contained in:
k
2024-12-23 22:08:45 -05:00
parent 52fbee6322
commit 3995c29b03
18 changed files with 278 additions and 244 deletions

View File

@@ -1,15 +1,21 @@
{ config, pkgs, inputs, ... }:
{
imports = [ ./waybar.nix ./tile.nix ];
config,
pkgs,
inputs,
...
}: {
imports = [./waybar.nix ./tile.nix];
wayland.windowManager.hyprland = {
enable = true;
systemd.variables = [ "--all" ];
systemd.variables = ["--all"];
xwayland.enable = true;
settings = {
exec-once = [ "${pkgs.hyprpaper}/bin/hyprpaper" "${pkgs.iio-hyprland}/bin/iio-hyprland" ];
exec-once = [
"${pkgs.hyprpaper}/bin/hyprpaper"
"${pkgs.iio-hyprland}/bin/iio-hyprland"
];
monitor = "eDP-1,preferred,auto,1";
general = {
"$mainMod" = "SUPER";
@@ -28,7 +34,7 @@
size = 2;
passes = 2;
brightness = 1;
noise = .3;
noise = 0.3;
new_optimizations = true;
};
drop_shadow = true;
@@ -48,12 +54,8 @@
vrr = 1;
};
input = {
touchpad = {
natural_scroll = true;
};
};
input = {touchpad = {natural_scroll = true;};};
bind = [
# keybindings
"$mainMod, Return, exec, $terminal"
@@ -68,7 +70,6 @@
"$mainMod, up, movefocus, u"
"$mainMod, down, movefocus, d"
# switch workspace
"$mainMod, 1, workspace, 1"
"$mainMod, 2, workspace, 2"
@@ -124,10 +125,9 @@
"$mainMod, mouse:273, resizewindow"
];
windowrule =
[ "float,mpv" "center,mpv" "pin,wofi" "idleinhibit focus,mpv" ];
windowrule = ["float,mpv" "center,mpv" "pin,wofi" "idleinhibit focus,mpv"];
windowrulev2 = [ ];
windowrulev2 = [];
};
};
@@ -141,4 +141,3 @@
_JAVA_AWT_WM_NONREPARENTING = 1;
};
}