1
0
Fork 0

Make appimage compatability UI-dependent

This commit is contained in:
Aires 2024-06-03 13:56:06 -04:00
parent 8ffbd755db
commit fa9d9a3a23
2 changed files with 6 additions and 7 deletions

View file

@ -3,12 +3,6 @@
{
# Set up base apps
programs = {
# Support for AppImage files
appimage = {
enable = true;
binfmt = true;
};
direnv.enable = true;
nano = {

View file

@ -45,7 +45,6 @@ with lib;
# Install Flatpaks
flatpak.packages = [
"com.mattjakeman.ExtensionManager"
"dev.geopjr.Tuba"
"org.bluesabre.MenuLibre"
"org.gnome.baobab"
"org.gnome.Calculator"
@ -134,5 +133,11 @@ with lib;
platformTheme = "gnome";
style = "adwaita-dark";
};
# Support for AppImage files
programs.appimage = {
enable = true;
binfmt = true;
};
};
}