13 lines
247 B
Bash
Executable File
13 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# First, run a check to see if the flake is valid
|
|
nix flake check
|
|
|
|
# Rebuild the system
|
|
sudo nixos-rebuild switch --flake ./#default
|
|
|
|
# Clean up old generations older than 180 days
|
|
sudo nix-collect-garbage --delete-older-than 180d
|
|
|
|
|