This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/sway.nix

21 lines
327 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }: {
programs.sway = {
enable = true;
wrapperFeatures.gtk = true; # so that gtk works properly
};
home-manager.users.james = {
home.packages = with pkgs; [
autotiling
dmenu
kitty
mako
swayidle
swaylock
wl-clipboard
wofi
];
};
}