toybox was kinda odd

This commit is contained in:
TheWanderingCrow 2026-04-03 15:55:02 +00:00
parent 43190742d5
commit 8c2d901a27
3 changed files with 6 additions and 2 deletions

View file

@ -47,7 +47,6 @@ in
pkgs.openssh
pkgs.file
pkgs.fastfetch
pkgs.toybox
];
home-manager.useGlobalPkgs = true;

View file

@ -1,9 +1,13 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
docker
];
virtualisation.docker = {
enable = true;
package = pkgs.docker;
extraPackages = [
pkgs.docker-compose
pkgs.docker-buildx
];
};