nixos-config/modules/home/wms/programs/default.nix
2025-05-06 05:35:09 -04:00

22 lines
311 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
./kanshi
./mako
./rofi
./swaylock
./waybar
];
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [
brightnessctl
clipman
hyprpicker
libnotify
rot8
shotman
wdisplays
wl-clipboard
wlsunset
];
}