21 lines
323 B
Nix
21 lines
323 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./clipman
|
|
./kanshi
|
|
./mako
|
|
./rofi
|
|
./swaylock
|
|
./waybar
|
|
./wlsunset
|
|
];
|
|
|
|
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [
|
|
brightnessctl
|
|
hyprpicker
|
|
libnotify
|
|
sway-contrib.grimshot
|
|
wdisplays
|
|
wl-clipboard-rs
|
|
];
|
|
}
|