hyprgrass

This commit is contained in:
Lilith 2025-03-17 21:04:49 +01:00
parent a22cc6450e
commit 1eb67ac0de
Signed by: lilith
GPG key ID: 8712A0F317C37175
7 changed files with 57 additions and 32 deletions

View file

@ -1,9 +1,10 @@
{ lib, ...}: {
{ lib, ... }:
{
imports = [
./hyprpaper.nix
./hyprlock.nix
# ./hyprgrass.nix
# ./utils.nix
./hyprgrass.nix
# ./utils.nix
];
wayland.windowManager.hyprland = {
@ -16,15 +17,11 @@
settings = {
"$terminal" = "alacritty";
env = [
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
];
env = [ "HYPRCURSOR_THEME,rose-pine-hyprcursor" ];
xwayland.force_zero_scaling = true;
monitor = [
",preferred,1"
];
monitor = [ ",preferred,1" ];
exec-once = [
"hyprlock"

View file

@ -0,0 +1,4 @@
{ pkgs, hyprgrass, ... }:
{
wayland.windowManager.hyprland.plugins = [ hyprgrass.packages.${pkgs.system}.default ];
}