mio-ops/profiles/sway.nix

11 lines
192 B
Nix
Raw Normal View History

2021-05-25 01:29:27 +00:00
# Configuration the Sway window manager
{ config, pkgs, ... }:
{
programs.sway = {
enable = true;
2021-11-16 04:57:23 +00:00
extraPackages = with pkgs; [ alacritty dmenu swayidle swaylock xwayland ];
2021-05-25 01:29:27 +00:00
};
}