nixos/hosts/hyprland.nix
Evie Litherland-Smith 353091e36b Switch hyprpaper for swww using kanshi to update
Hopefully fixed kanshi issues with docking/undocking
2023-08-08 08:21:51 +01:00

40 lines
849 B
Nix

{ pkgs, hyprland, ... }: {
imports = [ ./desktop.nix hyprland.nixosModules.default ];
environment.systemPackages = with pkgs; [
xdg-utils
gsettings-desktop-schemas
swww
pipewire
wireplumber
wl-clipboard
grim
slurp
swayimg
pamixer
pavucontrol
playerctl
brightnessctl
];
security.pam.services.swaylock = { };
services = {
blueman.enable = true;
gvfs.enable = true;
tumbler.enable = true;
greetd.settings = {
default_session.command = "Hyprland";
initial_session.command = "Hyprland";
};
};
xdg.portal = {
enable = true;
extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
};
programs = {
hyprland.enable = true;
thunar = {
enable = true;
plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ];
};
};
}