nixos/desktop/hyprland.nix

29 lines
666 B
Nix
Raw Normal View History

{ pkgs, ... }:
2023-04-11 13:00:53 +01:00
{
nixpkgs.overlays = [
(self: super: {
waybar = super.waybar.overrideAttrs (oldAttrs: {
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
});
})
];
programs.dconf.enable = true;
security.pam.services.swaylock = { };
2023-04-11 13:00:53 +01:00
programs.hyprland = {
enable = true;
2023-04-11 16:59:52 +01:00
xwayland = {
enable = true;
hidpi = true;
};
2023-04-11 13:00:53 +01:00
};
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
services.gvfs.enable = true; # Mount, trash, and other functionalities
services.tumbler.enable = true; # Thumbnail support for images
2023-04-11 13:00:53 +01:00
}