mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
24 lines
485 B
Nix
24 lines
485 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
programs.hyprland = {
|
|
enable = true;
|
|
withUWSM = true;
|
|
#package = inputs.hyprland.packages."${pkgs.system}".hyprland;
|
|
#portalPackage = inputs.hyprland.packages."${pkgs.system}".xdg-desktop-portal-hyprland;
|
|
};
|
|
|
|
services = {
|
|
noctalia-shell.enable = true;
|
|
clipboard-sync.enable = true;
|
|
};
|
|
/*
|
|
services.displayManager.sddm = {
|
|
enable = true;
|
|
package = pkgs.kdePackages.sddm;
|
|
wayland.enable = true;
|
|
};
|
|
*/
|
|
}
|