mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 11:35:41 +00:00
17 lines
293 B
Nix
17 lines
293 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;
|
|
}
|