46 current 2024-02-29 22:31:03 24.05.20240228.9099616 6.6.18 *

This commit is contained in:
zackartz 2024-02-29 22:31:06 -05:00
parent 1f9e5e17af
commit aa841666f5
6 changed files with 47 additions and 47 deletions

View file

@ -1,7 +1,6 @@
# Edit this configuration file to define what should be installed on # Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page # your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help). # and in the NixOS manual (accessible by running nixos-help).
{ {
config, config,
pkgs, pkgs,

View file

@ -53,6 +53,8 @@
pkgs.spotify pkgs.spotify
pkgs.neovide pkgs.neovide
pkgs.wofi pkgs.wofi
pkgs.alejandra
pkgs.dconf
# # You can also create simple shell scripts directly inside your # # You can also create simple shell scripts directly inside your
# # configuration. For example, this adds a command 'my-hello' to your # # configuration. For example, this adds a command 'my-hello' to your

View file

@ -25,7 +25,7 @@ in {
[ [
''${mod},RETURN,exec,kitty'' ''${mod},RETURN,exec,kitty''
"${mod},R,exec,wofi" "${mod},D,exec,wofi -show drun"
"${mod},Q,killactive" "${mod},Q,killactive"
"${mod},P,pseudo" "${mod},P,pseudo"

View file

@ -1,56 +1,55 @@
# home.nix # home.nix
{ {
wayland.windowManager.hyprland.settings = { wayland.windowManager.hyprland.settings = {
exec-once = [ exec-once = [
"dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP" "dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP"
]; ];
general = { general = {
# gaps # gaps
gaps_in = 6; gaps_in = 6;
gaps_out = 11; gaps_out = 11;
# border thiccness # border thiccness
border_size = 2; border_size = 2;
# whether to apply the sensitivity to raw input (e.g. used by games where you aim using your mouse)
apply_sens_to_raw = 0;
};
# whether to apply the sensitivity to raw input (e.g. used by games where you aim using your mouse) input = {
apply_sens_to_raw = 0; kb_layout = "us";
sensitivity = 0; # -1.0 - 1.0, 0 means no modification.
accel_profile = "flat";
force_no_accel = true;
};
decoration = {
# fancy corners
rounding = 7;
# blur
blur = {
enabled = true;
size = 3;
passes = 3;
ignore_opacity = false;
new_optimizations = 1;
xray = true;
contrast = 0.7;
brightness = 0.8;
}; };
input = { # shadow config
kb_layout = "us"; drop_shadow = "no";
sensitivity = 0; # -1.0 - 1.0, 0 means no modification. shadow_range = 20;
accel_profile = "flat"; shadow_render_power = 5;
force_no_accel = true; "col.shadow" = "rgba(292c3cee)";
}; };
decoration = { xwayland = {
# fancy corners force_zero_scaling = true;
rounding = 7; };
# blur
blur = {
enabled = true;
size = 3;
passes = 3;
ignore_opacity = false;
new_optimizations = 1;
xray = true;
contrast = 0.7;
brightness = 0.8;
};
# shadow config monitor = "DP-1,2560x1440@240,0x0,1";
drop_shadow = "no";
shadow_range = 20;
shadow_render_power = 5;
"col.shadow" = "rgba(292c3cee)";
};
xwayland = {
force_zero_scaling = true;
};
monitor = "DP-1,2560x1440@240,0x0,1";
}; };
} }

View file

@ -4,7 +4,7 @@
inputs, inputs,
... ...
}: { }: {
imports = [./config.nix ./binds.nix]; imports = [./config.nix ./binds.nix];
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
package = inputs.hyprland.packages.${pkgs.system}.default; package = inputs.hyprland.packages.${pkgs.system}.default;

View file

@ -1,3 +1,3 @@
{ {
imports = [ ./zsh/default.nix ]; imports = [./zsh/default.nix];
} }