2023-11-05 02:44:54 +00:00
|
|
|
{pkgs, ...}: {
|
2023-10-30 00:09:40 +00:00
|
|
|
imports = [
|
|
|
|
./waybar
|
2023-11-01 04:06:04 +00:00
|
|
|
./foot.nix
|
2023-10-30 00:09:40 +00:00
|
|
|
];
|
2023-10-29 03:17:57 +00:00
|
|
|
|
2023-11-14 04:51:19 +00:00
|
|
|
xdg.configFile."sway" = {
|
|
|
|
source = ./sway;
|
|
|
|
executable = true;
|
|
|
|
recursive = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
xdg.configFile."sway/background.jpg".source = ../background.jpg;
|
|
|
|
|
2023-10-29 03:17:57 +00:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
wl-clipboard
|
2023-10-29 04:35:51 +00:00
|
|
|
dunst
|
|
|
|
grim
|
|
|
|
slurp
|
2023-10-29 03:17:57 +00:00
|
|
|
];
|
|
|
|
|
2023-11-23 17:21:10 +00:00
|
|
|
home.sessionVariables = {
|
|
|
|
SDL_VIDEODRIVER = "wayland";
|
|
|
|
QT_QPA_PLATFORM = "wayland";
|
|
|
|
QT_WAYLAND_DISABLE_WINDOWDECORATIONS = "1";
|
|
|
|
_JAVA_AWT_WM_NONREPARENTING = "1";
|
|
|
|
MOZ_ENABLE_WAYLAND = "1";
|
|
|
|
};
|
|
|
|
|
2023-11-07 02:43:16 +00:00
|
|
|
programs.rofi.package = pkgs.rofi-wayland;
|
2023-10-29 03:17:57 +00:00
|
|
|
}
|