nix-config/hosts/nixos/modules/programs.nix
lightly-toasted 45a49b1529 feat: add mouse actions
Refs: 302185f6a873209ea51a26b314faa24c45cd03ac
2025-08-11 11:45:21 +09:00

19 lines
361 B
Nix

{ config, pkgs, ... }:
{
programs.zsh.enable = true;
programs.hyprland = {
enable = true;
withUWSM = true;
xwayland.enable = true;
};
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-volman
];
};
programs.xfconf.enable = true;
programs.ssh.startAgent = true;
programs.ydotool.enable = true;
}