From b72f29784aee1a7f7381d3f18496f12ee1fe58cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Fri, 21 Jun 2024 15:18:50 +0200 Subject: [PATCH] System Gen111 @ 2024-06-21-15:18:49 --- hosts/comfy-station/configuration.nix | 2 +- modules/services/openhantek.nix | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 modules/services/openhantek.nix diff --git a/hosts/comfy-station/configuration.nix b/hosts/comfy-station/configuration.nix index 296a411..b1c1c84 100644 --- a/hosts/comfy-station/configuration.nix +++ b/hosts/comfy-station/configuration.nix @@ -17,6 +17,7 @@ ../../modules/hardware/sound.nix ../../modules/hardware/yubikey.nix ../../modules/services/docker.nix + ../../modules/services/openhantek.nix ../../modules/desktop/dm ../../modules/desktop/de ../../modules/desktop/fonts @@ -57,7 +58,6 @@ git nix-index nix-output-monitor - openhantek6022 ranger sops unstable.nh diff --git a/modules/services/openhantek.nix b/modules/services/openhantek.nix new file mode 100644 index 0000000..c6d1b0e --- /dev/null +++ b/modules/services/openhantek.nix @@ -0,0 +1,10 @@ +{ + config, + pkgs, + ... +}: { + environment.systemPackages = [ + pkgs.openhantek6022 + ]; + services.udev.packages = [pkgs.openhantek6022]; +}