mio-ops/profiles/sway.nix

12 lines
194 B
Nix
Raw Permalink Normal View History

2021-05-25 01:29:27 +00:00
# Configuration the Sway window manager
{
2022-03-07 14:26:15 +00:00
config,
pkgs,
...
}: {
2021-05-25 01:29:27 +00:00
programs.sway = {
enable = true;
2022-03-07 14:26:15 +00:00
extraPackages = with pkgs; [alacritty dmenu swayidle swaylock xwayland];
2021-05-25 01:29:27 +00:00
};
}