nix/modules/nixos/user-installed-applications.nix

15 lines
388 B
Nix
Raw Normal View History

2023-10-03 12:13:30 -05:00
{pkgs, ...}: {
# enable flatpaks
services.flatpak.enable = true;
2023-10-03 12:13:30 -05:00
# enable appimages
boot.binfmt.registrations.appimage = {
wrapInterpreterInShell = false;
interpreter = "${pkgs.appimage-run}/bin/appimage-run";
recognitionType = "magic";
offset = 0;
mask = ''\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\xff'';
magicOrExtension = ''\x7fELF....AI\x02'';
};
2023-09-05 22:39:17 -05:00
}