feat: add vuescan

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2024-09-30 09:33:01 +02:00
parent 2188eaaa7d
commit cf757f1df4
Signed by: lander
GPG key ID: 0142722B4B0C536F
2 changed files with 68 additions and 6 deletions

View file

@ -1,6 +1,6 @@
{ config, pkgs, ... }:
{
{pkgs, ...}: let
vuescan = pkgs.callPackage ../common/optional/vuescan.nix {};
in {
imports = [
./hardware-configuration.nix
@ -58,17 +58,19 @@
awscli2
libreoffice
x32edit
vuescan
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
services.udev.packages = [vuescan];
nix.settings.experimental-features = ["nix-command" "flakes"];
services.tailscale.enable = true;
services.printing.enable = true;
services.printing.drivers = [ pkgs.brlaser ];
services.printing.drivers = [pkgs.brlaser];
hardware.sane.enable = true;
system.stateVersion = "24.05";
}