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]; +}