typst, distrobox, eduvpn

This commit is contained in:
Till 2025-11-04 09:57:42 +01:00
parent 925f6fe77c
commit 405dfebee4
3 changed files with 15 additions and 1 deletions

View file

@ -22,9 +22,11 @@
./system/desktop.nix ./system/desktop.nix
./system/hardware/nova.nix ./system/hardware/nova.nix
./system/gnome.nix ./system/gnome.nix
./system/plasma.nix
./system/ergodox.nix ./system/ergodox.nix
./system/steam.nix ./system/steam.nix
./system/btrbk.nix ./system/btrbk.nix
# ./system/distrobox.nix
./system/yubikey.nix ./system/yubikey.nix
./system/alt.nix ./system/alt.nix
./system/guest.nix ./system/guest.nix

View file

@ -18,6 +18,7 @@
poppler_utils poppler_utils
zotero zotero
lorem lorem
typst
# graphics # graphics
gimp gimp
@ -37,6 +38,7 @@
quickemu quickemu
keymapp keymapp
gnome-solanum gnome-solanum
eduvpn-client
]; ];
@ -51,6 +53,6 @@
]; ];
programs.obs-studio.enable = true; programs.obs-studio.enable = true;
programs.freetube.enable = true; # programs.freetube.enable = true;
} }

10
system/distrobox.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
virtualisation.podman = {
enable = true;
dockerCompat = true;
};
environment.systemPackages = [ pkgs.distrobox ];
}