nixos/desktop/hyprland.nix
Evie Litherland-Smith ee34f667b9 Use plasma for main desktop
Move hyprland specific audio/bluetooth packages into hyprland expression
Increase frequency of nix cleanup, same duration
2023-05-14 18:10:39 +01:00

35 lines
796 B
Nix

{ pkgs, ... }:
{
nixpkgs.overlays = [
(self: super: {
waybar = super.waybar.overrideAttrs (oldAttrs: {
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
});
})
];
programs.dconf.enable = true;
services.blueman.enable = true;
environment.systemPackages = [
pkgs.pavucontrol
pkgs.pamixer
pkgs.pulseaudio
];
security.pam.services.swaylock = { };
programs.hyprland = {
enable = true;
xwayland = {
enable = true;
hidpi = true;
};
};
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
}