Home : Replace Flatpak with sys Firefox.

This commit is contained in:
Dmitry Voronin 2024-02-21 02:58:36 +03:00
parent 148b3d0c22
commit abe0eaccfe
3 changed files with 11 additions and 1 deletions

View file

@ -92,7 +92,6 @@
./module/AmdGpu.nix ./module/AmdGpu.nix
./module/AmdCpu.nix ./module/AmdCpu.nix
./module/Docker.nix ./module/Docker.nix
./module/Flatpak.nix
./module/Ftpd.nix ./module/Ftpd.nix
./module/Gnome.nix ./module/Gnome.nix
./module/PowersaveAmd.nix ./module/PowersaveAmd.nix

View file

@ -18,6 +18,11 @@
10.1.0.2 pass.voronind.com 10.1.0.2 pass.voronind.com
''; '';
# Firefox.
environment.systemPackages = with pkgs; [
firefox
];
# Filesystems. # Filesystems.
fileSystems."/storage/cold_1" = { fileSystems."/storage/cold_1" = {
device = "/dev/storage/cold_1"; device = "/dev/storage/cold_1";

View file

@ -8,4 +8,10 @@
extraGroups = [ "networkmanager" ]; extraGroups = [ "networkmanager" ];
packages = with pkgs; [ ]; packages = with pkgs; [ ];
}; };
# Disable dconfload.
systemd.user.services.dconfload.wantedBy = lib.mkForce [ ];
# Disable flatpak install.
systemd.services.flatpakinstall.wantedBy = lib.mkForce [ ];
} }