mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
13 lines
252 B
Nix
13 lines
252 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./wayland-wm.nix
|
|
];
|
|
programs.sway.enable = true;
|
|
programs.sway.xwayland.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
swaybg
|
|
sway-contrib.grimshot
|
|
waybar
|
|
xdg-desktop-portal-wlr
|
|
];
|
|
}
|