Add bubblewrap and socat

This commit is contained in:
Armel van Ravels
2026-08-11 14:11:21 +02:00
parent b4ef190034
commit c8c49bb238
3 changed files with 18 additions and 0 deletions

View File

@@ -27,6 +27,8 @@
../../modules/vlc.nix ../../modules/vlc.nix
../../modules/lazygit.nix ../../modules/lazygit.nix
../../modules/yazi.nix ../../modules/yazi.nix
../../modules/bubblewrap.nix
../../modules/socat.nix
]; ];
boot.kernelPackages = pkgs.linuxPackages_latest; boot.kernelPackages = pkgs.linuxPackages_latest;

8
modules/bubblewrap.nix Normal file
View File

@@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
bubblewrap
];
}

8
modules/socat.nix Normal file
View File

@@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
socat
];
}