mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-09 15:16:26 +00:00
40 lines
661 B
Nix
40 lines
661 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./hyprland-vnc.nix
|
||
|
./gammastep.nix
|
||
|
./kitty.nix
|
||
|
./mako.nix
|
||
|
./qutebrowser.nix
|
||
|
./swayidle.nix
|
||
|
./swaylock.nix
|
||
|
./waybar.nix
|
||
|
./wofi.nix
|
||
|
./zathura.nix
|
||
|
];
|
||
|
|
||
|
xdg.mimeApps.enable = true;
|
||
|
home.packages = with pkgs; [
|
||
|
grim
|
||
|
gtk3 # For gtk-launch
|
||
|
imv
|
||
|
mimeo
|
||
|
primary-xwayland
|
||
|
pulseaudio
|
||
|
slurp
|
||
|
waypipe
|
||
|
wf-recorder
|
||
|
wl-clipboard
|
||
|
wl-mirror
|
||
|
wl-mirror-pick
|
||
|
xdg-utils-spawn-terminal # Patched to open terminal
|
||
|
ydotool
|
||
|
];
|
||
|
|
||
|
home.sessionVariables = {
|
||
|
MOZ_ENABLE_WAYLAND = 1;
|
||
|
QT_QPA_PLATFORM = "wayland";
|
||
|
LIBSEAT_BACKEND = "logind";
|
||
|
};
|
||
|
}
|