Dasha : Disable Flatpakinstall on host only.
This commit is contained in:
parent
abe0eaccfe
commit
d1f2c28e4d
|
@ -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";
|
||||||
|
|
|
@ -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 [ ];
|
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue