mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 19:45:40 +00:00
19 lines
361 B
Nix
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;
|
|
}
|