Dasha : Disable Flatpakinstall on host only.

This commit is contained in:
Dmitry Voronin 2024-02-21 03:01:48 +03:00
parent abe0eaccfe
commit d1f2c28e4d
2 changed files with 4 additions and 4 deletions

View file

@ -1,8 +1,11 @@
{ ... }: { { lib, ... }: {
imports = [ imports = [
./Tablet.nix ./Tablet.nix
]; ];
# Disable flatpak install.
systemd.services.flatpakinstall.wantedBy = lib.mkForce [ ];
# Filesystems. # Filesystems.
fileSystems."/storage/hot" = { fileSystems."/storage/hot" = {
device = "/dev/storage/hot"; device = "/dev/storage/hot";

View file

@ -11,7 +11,4 @@
# Disable dconfload. # Disable dconfload.
systemd.user.services.dconfload.wantedBy = lib.mkForce [ ]; systemd.user.services.dconfload.wantedBy = lib.mkForce [ ];
# Disable flatpak install.
systemd.services.flatpakinstall.wantedBy = lib.mkForce [ ];
} }