ab11f72a6b
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.
21 lines
327 B
Nix
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
|
|
];
|
|
};
|
|
}
|