nixos/home/desktop/sway.nix

6 lines
161 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{pkgs, ...}: {
2023-05-16 09:11:39 +01:00
#xdg.configFile."sway".source = ./config/sway;
2023-05-17 17:10:18 +01:00
home.packages = with pkgs; [brightnessctl];
wayland.windowManager.sway = {enable = true;};
2023-05-16 09:11:39 +01:00
}