This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Partition Layout | |
# | |
# /boot - FAT32 - 1G | |
# volume - BTRFS - Rest of Disk | |
# /root - Subvol - / | |
# /home - Subvol - /home | |
# /nix - Subvol - /nix | |
# | |
{ | |
disko.devices = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
disko.devices = { | |
disk.sda = { | |
type = "disk"; | |
device = "/dev/sda"; | |
content = { | |
type = "gpt"; | |
partitions = { | |
ESP = { | |
type = "EF00"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Asnp VeeamPSSnapin | |
# Edit the name to match your iland Cloud Repository name. | |
$repo = Get-VBRBackupRepository -Name "iland Cloud Repository" | |
$job = Get-VBRJob | Where {$_.info.TargetRepositoryId -eq $repo.id} | |
(Get-VBRBackup -Name $job.name).GetAllStorages() | Select @{N="File"; E={$_.FilePath}}, @{N="Size (GB)"; E={[Math]::Round($_.Stats.BackupSize / 1GB, 1)}} | Format-Table -AutoSize |