forked from extern/nix-config
08d3f0f811
swww has some advantages like webp support (something that was rejected for swaybg due to the feature not existing in a library they were using). Additionally, it's convenient to only have to worry about one swww instance instead of multiple swaybg instances.
34 lines
410 B
Nix
34 lines
410 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./dual-function-keys
|
|
./dunst
|
|
./fcitx5
|
|
./fonts
|
|
./gtk
|
|
./hyprland
|
|
./mozc
|
|
./nwg-dock
|
|
./pipewire
|
|
./rofi
|
|
./stylix
|
|
./swaylock
|
|
./udiskie
|
|
./waybar
|
|
./xcursor
|
|
./xdg-user-dirs
|
|
./xresources
|
|
./xserver
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
grim
|
|
slurp
|
|
wl-clipboard
|
|
lnch
|
|
wev
|
|
swww
|
|
];
|
|
}
|