disable flatpak

This commit is contained in:
ponymushama 2024-07-21 22:06:30 +08:00
parent f3be463ee9
commit 617d5e970b
3 changed files with 5 additions and 5 deletions

View file

@ -14,7 +14,7 @@
../../system/hardware/printing.nix
../../system/hardware/bluetooth.nix
(./. + "../../../system/wm"+("/"+userSettings.wm)+".nix") # My window manager
../../system/app/flatpak.nix
#../../system/app/flatpak.nix
../../system/app/virtualization.nix
( import ../../system/app/docker.nix {storageDriver = null; inherit pkgs userSettings lib;} )
../../system/security/doas.nix

View file

@ -18,7 +18,7 @@
../../user/app/keepass/keepass.nix # My password manager
(./. + "../../../user/app/browser"+("/"+userSettings.browser)+".nix") # My default browser selected from flake
../../user/app/virtualization/virtualization.nix # Virtual machines
../../user/app/flatpak/flatpak.nix # Flatpaks
#../../user/app/flatpak/flatpak.nix # Flatpaks
../../user/style/stylix.nix # Styling and themes for my apps
../../user/lang/cc/cc.nix # C and C++ tools
../../user/lang/godot/godot.nix # Game development

View file

@ -6,7 +6,7 @@
XDG_DATA_DIRS = "$XDG_DATA_DIRS:/usr/share:/var/lib/flatpak/exports/share:$HOME/.local/share/flatpak/exports/share"; # lets flatpak work
};
services.flatpak.enable = true;
services.flatpak.packages = [ { appId = "com.kde.kdenlive"; origin = "flathub"; } ];
services.flatpak.update.onActivation = true;
#services.flatpak.enable = true;
#services.flatpak.packages = [ { appId = "com.kde.kdenlive"; origin = "flathub"; } ];
#services.flatpak.update.onActivation = true;
}