From 33406d6cf63fe12e495381511cf6af54704d0933 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Tue, 22 Sep 2026 13:57:08 +0100 Subject: Install LXD and Workshop on the corporate laptop --- scripts/canonical.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/canonical.py b/scripts/canonical.py index 7e6565f..35bfdcb 100644 --- a/scripts/canonical.py +++ b/scripts/canonical.py @@ -20,8 +20,14 @@ def packages(source: str) -> list[str]: def snap_install_commands() -> list[list[str]]: return [ - ["sudo", "snap", "install", name, "--channel=stable"] - + (["--classic"] if name == "ghostty" else []) + [ + "sudo", + "snap", + "install", + name, + "--channel=6/stable" if name == "lxd" else "--channel=stable", + ] + + (["--classic"] if name in {"ghostty", "workshop"} else []) for name in packages("snap") ] -- cgit v1.3.1