mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-25 10:32:19 +00:00
36 lines
571 B
Nix
36 lines
571 B
Nix
|
{ pkgs, ... }: {
|
||
|
imports = [
|
||
|
./gammastep.nix
|
||
|
./kitty.nix
|
||
|
./mako.nix
|
||
|
./swayidle.nix
|
||
|
./swaylock.nix
|
||
|
./waybar.nix
|
||
|
./wofi.nix
|
||
|
./zathura.nix
|
||
|
];
|
||
|
|
||
|
xdg.mimeApps.enable = true;
|
||
|
home.packages = with pkgs; [
|
||
|
grim
|
||
|
gtk3
|
||
|
imv
|
||
|
mimeo
|
||
|
primary-xwayland
|
||
|
pulseaudio
|
||
|
slurp
|
||
|
waypipe
|
||
|
wf-recorder
|
||
|
wl-clipboard
|
||
|
wl-mirror
|
||
|
wl-mirror-pick
|
||
|
xdg-utils-spawn-terminal
|
||
|
ydotool
|
||
|
];
|
||
|
|
||
|
home.sessionVariables = {
|
||
|
MOZ_ENABLE_WAYLAND = 1;
|
||
|
QT_QPA_PLATFORM = "wayland";
|
||
|
LIBSEAT_BACKEND = "logind";
|
||
|
};
|
||
|
}
|