more esthetics

This commit is contained in:
2025-02-24 19:00:07 +01:00
parent 7bf8c855b8
commit 47ed3eb0cb
11 changed files with 54 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
{
imports = [
./hyprland-customization.nix
./hyprpaper.nix
];
}

View File

@@ -1,6 +1,5 @@
{inputs, pkgs, ...}:
{
programs.kitty.enable = true;
home.packages = [
pkgs.hyprshot
@@ -79,6 +78,23 @@
decoration = {
rounding = 5;
active_opacity = 0.95;
inactive_opacity = 0.9;
shadow = {
enabled = true;
range = 6;
render_power = 6;
color = "#000000";
};
blur = {
enabled = true;
size = 4;
passes = 2;
new_optimizations = on;
ignore_opacity = true;
};
};
monitor = [

View File

@@ -0,0 +1,11 @@
{
...
}:
{
services.hyprpaper = {
enable = true;
settings = {
preload = builtins.attrValues (builtins.readDir ./wallpapers)
};
};
}

View File

@@ -0,0 +1,17 @@
{pkgs, ...}:
{
programs.kitty = {
enable = true;
shellIntegration.enableFishIntegration = true;
settings = {
background_opacity = 0.8;
confirm_os_window_close = 0;
cursor_trail = 3;
};
keybindings = {
"ctrl+c" = "copy_to_clipboard";
"ctrl+v" = "paste_from_clipboard";
};
};
}