mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-24 19:51:30 +02:00
phone: Don't customize hyprland at the configuration level
This was causing other options to not be applied correctly.
This commit is contained in:
parent
b918c56ccc
commit
30198aa23d
@ -1,7 +1,6 @@
|
|||||||
{ nix-config, pkgs, lib, ... }:
|
{ nix-config, pkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (lib) singleton mkForce;
|
|
||||||
inherit (builtins) attrValues;
|
inherit (builtins) attrValues;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
@ -11,18 +10,7 @@ in
|
|||||||
|
|
||||||
nixpkgs.overlays = attrValues nix-config.overlays;
|
nixpkgs.overlays = attrValues nix-config.overlays;
|
||||||
|
|
||||||
home-manager.sharedModules = attrValues nix-config.homeManagerModules ++ singleton {
|
home-manager.sharedModules = attrValues nix-config.homeManagerModules;
|
||||||
services.hypridle.enable = mkForce false;
|
|
||||||
|
|
||||||
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};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user