Home : Replace Flatpak with sys Firefox.
This commit is contained in:
parent
148b3d0c22
commit
abe0eaccfe
|
@ -92,7 +92,6 @@
|
|||
./module/AmdGpu.nix
|
||||
./module/AmdCpu.nix
|
||||
./module/Docker.nix
|
||||
./module/Flatpak.nix
|
||||
./module/Ftpd.nix
|
||||
./module/Gnome.nix
|
||||
./module/PowersaveAmd.nix
|
||||
|
|
|
@ -18,6 +18,11 @@
|
|||
10.1.0.2 pass.voronind.com
|
||||
'';
|
||||
|
||||
# Firefox.
|
||||
environment.systemPackages = with pkgs; [
|
||||
firefox
|
||||
];
|
||||
|
||||
# Filesystems.
|
||||
fileSystems."/storage/cold_1" = {
|
||||
device = "/dev/storage/cold_1";
|
||||
|
|
|
@ -8,4 +8,10 @@
|
|||
extraGroups = [ "networkmanager" ];
|
||||
packages = with pkgs; [ ];
|
||||
};
|
||||
|
||||
# Disable dconfload.
|
||||
systemd.user.services.dconfload.wantedBy = lib.mkForce [ ];
|
||||
|
||||
# Disable flatpak install.
|
||||
systemd.services.flatpakinstall.wantedBy = lib.mkForce [ ];
|
||||
}
|
||||
|
|
Reference in a new issue