#Km91#@sh.itjust.works to linuxmemes@lemmy.world · edit-222 days agoBeautiful.sh.itjust.worksimagemessage-square3linkfedilinkarrow-up15arrow-down10file-text
arrow-up15arrow-down1imageBeautiful.sh.itjust.works#Km91#@sh.itjust.works to linuxmemes@lemmy.world · edit-222 days agomessage-square3linkfedilinkfile-text
minus-squareleftzero@lemmy.dbzer0.comlinkfedilinkarrow-up1·21 days 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.
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.