refactor: make nixd happy

This commit is contained in:
matt1432 2024-05-05 23:07:06 -04:00
parent 551880cc24
commit ac9aa96522
16 changed files with 60 additions and 72 deletions
modules/hyprland

View file

@ -34,7 +34,9 @@ in {
xserver.wacom.enable = isTouchscreen;
};
programs.hyprland = with hyprland.packages.${pkgs.system}; {
programs.hyprland = let
inherit (hyprland.packages.${pkgs.system}) default xdg-desktop-portal-hyprland;
in {
enable = true;
package = default;
portalPackage = xdg-desktop-portal-hyprland;

View file

@ -33,8 +33,8 @@ in {
hypridle.homeManagerModules.default
];
home.packages = with pkgs; [
gnome.seahorse
home.packages = [
pkgs.gnome.seahorse
lockPkg
];