my-scripts/installers/nixos/sway-configuration.nix

29 lines
330 B
Nix
Raw Permalink Normal View History

2022-12-10 04:18:23 +00:00
{ config, pkgs, lib, ... }: {
environment.systemPackages = with pkgs; [
wayland
sway
2022-12-10 05:58:13 +00:00
waylock
2022-12-10 04:18:23 +00:00
swayidle
grim
slurp
wl-clipboard
mako
swaybg
waybar
xwayland
gammastep
2022-12-10 05:58:13 +00:00
bemenu
2022-12-10 04:18:23 +00:00
imv
2022-12-10 05:58:13 +00:00
foot
autotiling
2022-12-10 04:18:23 +00:00
];
# enable sway window manager
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
}