33 lines
629 B
Nix
33 lines
629 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.hyprland.enable = true;
|
|
|
|
programs.thunar = {
|
|
enable = true;
|
|
plugins = with pkgs.xfce; [
|
|
thunar-archive-plugin
|
|
thunar-volman
|
|
];
|
|
};
|
|
services.gvfs.enable = true;
|
|
services.tumbler.enable = true;
|
|
|
|
xdg.portal = {
|
|
enable = true;
|
|
extraPortals = with pkgs; [ xdg-desktop-portal-hyprland ];
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.elegant-sddm ];
|
|
|
|
services.displayManager.sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
settings.Users.HideUsers = "waha";
|
|
theme = "Elegant";
|
|
};
|
|
|
|
security.polkit.enable = true;
|
|
programs.dconf.enable = true;
|
|
}
|