NixOS-Configuration/desktop.nix

20 lines
239 B
Nix
Raw Normal View History

2023-12-31 19:11:11 +00:00
{ pkgs, ... }:
{
programs = {
sway = {
enable = true;
extraPackages = with pkgs; [
swaylock
swayidle
dmenu
wmenu
i3status
brightnessctl
wob
];
};
};
}