nixos/hosts/hyprland.nix
Evie Litherland-Smith eed323b3e7 Split desktop config into plasma and hyprland
Change Ronin to use plasma wayland instead of hyprland
2023-08-02 10:23:16 +01:00

23 lines
577 B
Nix

{ pkgs, hyprland, ... }: {
imports = [ ./desktop.nix hyprland.nixosModules.default ];
environment.systemPackages = with pkgs; [
xdg-utils
gsettings-desktop-schemas
pavucontrol
grim
slurp
];
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.extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
programs.hyprland.enable = true;
}