You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
527 B
35 lines
527 B
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./hyprland-vnc.nix
|
|
./gammastep.nix
|
|
./kitty.nix
|
|
./mako.nix
|
|
./swayidle.nix
|
|
./swaylock.nix
|
|
./waybar.nix
|
|
./wofi.nix
|
|
./zathura.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
grim
|
|
imv
|
|
mimeo
|
|
primary-xwayland
|
|
pulseaudio
|
|
slurp
|
|
waypipe
|
|
wf-recorder
|
|
wl-clipboard
|
|
wl-mirror
|
|
wl-mirror-pick
|
|
ydotool
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
MOZ_ENABLE_WAYLAND = 1;
|
|
QT_QPA_PLATFORM = "wayland";
|
|
LIBSEAT_BACKEND = "logind";
|
|
};
|
|
}
|
|
|