2023-05-17 17:10:18 +01:00
|
|
|
{pkgs, ...}: {
|
2023-04-26 15:25:40 +01:00
|
|
|
nixpkgs.overlays = [
|
|
|
|
(self: super: {
|
|
|
|
waybar = super.waybar.overrideAttrs (oldAttrs: {
|
2023-05-17 17:10:18 +01:00
|
|
|
mesonFlags = oldAttrs.mesonFlags ++ ["-Dexperimental=true"];
|
2023-04-26 15:25:40 +01:00
|
|
|
});
|
|
|
|
})
|
|
|
|
];
|
2023-05-14 18:10:39 +01:00
|
|
|
services.blueman.enable = true;
|
2023-06-06 15:51:29 +01:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
pavucontrol
|
|
|
|
pamixer
|
|
|
|
pulseaudio
|
|
|
|
grim
|
|
|
|
slurp
|
2023-05-14 18:10:39 +01:00
|
|
|
];
|
2023-05-17 17:10:18 +01:00
|
|
|
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
|
|
|
};
|
2023-04-29 18:00:03 +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
|
|
|
}
|