mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-20 09:47:57 +02:00
phone: Disable drop shadow / blur / animations
Makes using Hyprland much faster on the PinePhone.
This commit is contained in:
parent
0e95b81999
commit
3c38068594
@ -1,6 +1,7 @@
|
|||||||
{ nix-config, pkgs, ... }:
|
{ nix-config, pkgs, lib, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
inherit (lib) singleton mkForce;
|
||||||
inherit (builtins) attrValues;
|
inherit (builtins) attrValues;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
@ -9,7 +10,18 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
nixpkgs.overlays = attrValues nix-config.overlays;
|
nixpkgs.overlays = attrValues nix-config.overlays;
|
||||||
home-manager.sharedModules = attrValues nix-config.homeManagerModules;
|
|
||||||
|
home-manager.sharedModules = attrValues nix-config.homeManagerModules ++ singleton {
|
||||||
|
wayland.windowManager.hyprland.settings = mkForce {
|
||||||
|
decoration = {
|
||||||
|
drop_shadow = false;
|
||||||
|
blur.enabled = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
animations.enabled = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
environment.systemPackages = attrValues nix-config.packages.${pkgs.system};
|
environment.systemPackages = attrValues nix-config.packages.${pkgs.system};
|
||||||
|
|
||||||
modules = {
|
modules = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user