Migrate remaining nixos modules

This commit is contained in:
2025-04-22 23:11:45 +02:00
parent 94498a0038
commit dcdc97aad8
13 changed files with 54 additions and 369 deletions

View File

@ -0,0 +1,16 @@
{
config,
lib,
pkgs,
inputs,
...
}:
{
programs.hyprland.enable = true;
programs.hyprland.package = inputs.hyprland.packages.${pkgs.system}.hyprland; # does only work with nixos-unstable
programs.hyprland.xwayland.enable = true;
security.pam.services.hyprlock = { };
services.displayManager.defaultSession = "hyprland";
}