System Gen111 @ 2024-06-21-15:18:49

This commit is contained in:
Jonas Röger 2024-06-21 15:18:50 +02:00
parent e2445aed6b
commit b72f29784a
2 changed files with 11 additions and 1 deletions

View File

@ -17,6 +17,7 @@
../../modules/hardware/sound.nix ../../modules/hardware/sound.nix
../../modules/hardware/yubikey.nix ../../modules/hardware/yubikey.nix
../../modules/services/docker.nix ../../modules/services/docker.nix
../../modules/services/openhantek.nix
../../modules/desktop/dm ../../modules/desktop/dm
../../modules/desktop/de ../../modules/desktop/de
../../modules/desktop/fonts ../../modules/desktop/fonts
@ -57,7 +58,6 @@
git git
nix-index nix-index
nix-output-monitor nix-output-monitor
openhantek6022
ranger ranger
sops sops
unstable.nh unstable.nh

View File

@ -0,0 +1,10 @@
{
config,
pkgs,
...
}: {
environment.systemPackages = [
pkgs.openhantek6022
];
services.udev.packages = [pkgs.openhantek6022];
}