nixpkgs/home/packages/custom/update-ubuntu-system/default.nix
2022-09-26 08:08:45 +02:00

17 lines
298 B
Nix

{ writeShellApplication }:
writeShellApplication {
name = "custom-update-ubuntu-system";
text = ''
sudo apt update
sudo apt list --upgradable
sudo apt upgrade -V -y
sudo apt autoremove -y
sudo fwupdmgr refresh
sudo fwupdmgr get-updates
fwupdmgr update -y
'';
}