begin modularization

This commit is contained in:
Odweta
2026-01-12 10:16:59 +01:00
parent 9c9cbada43
commit 939d734e91
39 changed files with 40 additions and 60 deletions
+15
View File
@@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
# program enable
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
# xdg portal for hyprland
xdg.portal = {
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];
};
}