mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-08-20 02:09:09 +02:00
18 lines
439 B
Nix
18 lines
439 B
Nix
{pkgs, ...}: {
|
|
xdg.portal = {
|
|
enable = true;
|
|
extraPortals = [pkgs.xdg-desktop-portal-hyprland];
|
|
configPackages = [pkgs.hyprland];
|
|
};
|
|
services = {
|
|
flatpak.enable = true; # Enable Flatpak
|
|
};
|
|
systemd.services.flatpak-repo = {
|
|
wantedBy = ["multi-user.target"];
|
|
path = [pkgs.flatpak];
|
|
script = ''
|
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
|
'';
|
|
};
|
|
}
|