home: hyprland: fix missing swww

This commit is contained in:
Guanran Wang 2023-12-19 02:17:27 +08:00
parent d252e6f3d4
commit 455cfb9b89
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,5 @@
{ {
#inputs, #inputs,
pkgs,
... ...
}: { }: {
imports = [ imports = [
@ -14,8 +13,6 @@
../waybar ../waybar
]; ];
home.packages = with pkgs; [swww];
wayland.windowManager = { wayland.windowManager = {
hyprland = { hyprland = {
enable = true; enable = true;

View file

@ -0,0 +1,3 @@
{pkgs, ...}: {
home.packages = [pkgs.swww];
}