#Km91#@sh.itjust.works to linuxmemes@lemmy.world · edit-217 hours agoBeautiful.sh.itjust.worksimagemessage-square61fedilinkarrow-up1309file-text
arrow-up1309imageBeautiful.sh.itjust.works#Km91#@sh.itjust.works to linuxmemes@lemmy.world · edit-217 hours agomessage-square61fedilinkfile-text
minus-squareleftzero@lemmy.dbzer0.comlinkfedilinkarrow-up16·11 hours agoAdd programs.firefox.enable = true; to configuration.nix. Call sudo nixos-rebuild switch. Maybe add --flake if you’re feeling adventurous. Done. Or, more realistically… programs = { firefox = { enable = true; # Configure anything you want here (language, # extensions, policies... whatever). }; # Enable and configure other programs here. }; … and keep the whole thing in a git repository to track changes and have it available for other machines.
minus-squarePastel@sopuli.xyzlinkfedilinkarrow-up8·6 hours agoAnd you can even add programs.firefox.package = pkgs.librewolf; if you prefer it!
Add
programs.firefox.enable = true;to configuration.nix.Call
sudo nixos-rebuild switch. Maybe add--flakeif you’re feeling adventurous.Done.
Or, more realistically…
programs = { firefox = { enable = true; # Configure anything you want here (language, # extensions, policies... whatever). }; # Enable and configure other programs here. };… and keep the whole thing in a git repository to track changes and have it available for other machines.
And you can even add
programs.firefox.package = pkgs.librewolf;if you prefer it!