refactor: small changes

This commit is contained in:
matt1432 2023-11-30 17:01:46 -05:00
parent 1b9a2a7f85
commit b4648912f5
3 changed files with 11 additions and 4 deletions
home/hyprland

View file

@ -11,6 +11,7 @@
symlink = config.lib.file.mkOutOfStoreSymlink;
optionals = lib.lists.optionals;
isNvidia = osConfig.hardware.nvidia.modesetting.enable;
isTouchscreen = osConfig.hardware.sensor.iio.enable;
gset = pkgs.gsettings-desktop-schemas;
polkit = pkgs.plasma5Packages.polkit-kde-agent;
@ -31,7 +32,7 @@ in {
plugins =
[]
++ (optionals (osConfig.hardware.sensor.iio.enable) [
++ (optionals (isTouchscreen) [
hyprgrass.packages.${pkgs.system}.default
]);