This commit is contained in:
Tao Tien 2025-10-16 17:25:13 -07:00
parent 90d3fecdc7
commit 01abe6ae00
6 changed files with 36 additions and 11 deletions

View file

@ -1,4 +1,9 @@
{pkgs, ...}: {
{
lib,
pkgs,
...
}: {
programs.qgroundcontrol.enable = true;
environment.systemPackages = with pkgs; [
# keep-sorted start
# act
@ -133,7 +138,14 @@
virtualisation.docker = {
enable = true;
storageDriver = "btrfs";
# storageDriver =
# if lib.strings.hasPrefix "NOlaptop" (builtins.readFile /etc/hostname)
# then "bcachefs"
# else "btrfs";
storageDriver =
if lib.strings.hasPrefix "NOcomputer" (builtins.readFile /etc/hostname)
then "btrfs"
else null;
};
# virtualisation.docker.rootless = {
# enable = true;