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
James Patrick ab11f72a6b Requires the nixos package to be installed.
I'm guessing that this stems from needing lower level access for setting
up the wayland backend. This was already in the vague grey area where it
could be said to live in userland or system land so I'm leaving this here.
2021-11-28 22:16:54 -05:00

21 lines
327 B
Nix

{ 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
];
};
}