21 lines
351 B
Nix
21 lines
351 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./swaylock.nix
|
|
./eww.nix
|
|
./waybar.nix
|
|
./gtk.nix
|
|
./dunst.nix
|
|
./rofi.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
pipewire
|
|
wireplumber
|
|
wl-clipboard
|
|
swayimg
|
|
hyprpaper
|
|
brightnessctl
|
|
];
|
|
programs.rofi.package = pkgs.rofi-wayland;
|
|
wayland.windowManager.sway = {enable = true;};
|
|
}
|