added scanner support

This commit is contained in:
Don Harper 2022-10-28 22:12:36 -05:00
parent 03644baf1f
commit 429b5bf88d
2 changed files with 9 additions and 3 deletions

View file

@ -23,6 +23,7 @@
pkgs.fractal pkgs.fractal
pkgs.gnome.gnome-tweaks pkgs.gnome.gnome-tweaks
pkgs.gtop pkgs.gtop
pkgs.imagemagick
pkgs.imv pkgs.imv
pkgs.isync pkgs.isync
pkgs.jellyfin-media-player pkgs.jellyfin-media-player

View file

@ -13,9 +13,8 @@
networking.useDHCP = false; networking.useDHCP = false;
networking.extraHosts = networking.extraHosts =
'' ''
100.89.219.77 mini.tail rss.duckland.org vault.duckland.org git.duckland.org photos.duckland.org recipes.duckland.org vault.duckland.org dashy.duckland.org music.duckland.org bandwidth.duckland.org speed.duckland.org cloud.duckland.org plex.duckland.org smoke.duckland.org smart.duckland.org drone.home.duckland.org webhook.home.duckland.org cal.duckland.org gluetun.config.duckland.org jelly.duckland.org mini 100.89.219.77 mini.tail rss.duckland.org vault.duckland.org git.duckland.org photos.duckland.org recipes.duckland.org vault.duckland.org dashy.duckland.org music.duckland.org bandwidth.duckland.org bandwidth2.duckland.org speed.duckland.org cloud.duckland.org plex.duckland.org smoke.duckland.org smart.duckland.org drone.home.duckland.org webhook.home.duckland.org cal.duckland.org gluetun.config.duckland.org jelly.duckland.org mini
''; '';
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Set your time zone. # Set your time zone.
time.timeZone = "America/Chicago"; time.timeZone = "America/Chicago";
@ -49,12 +48,18 @@
#xkbVariant = ""; #xkbVariant = "";
#}; #};
services.avahi.enable = true;
services.avahi.nssmdns = true;
# Enable CUPS to print documents. # Enable CUPS to print documents.
services.printing.enable = true; services.printing.enable = true;
# Enable sound with pipewire. # Enable sound with pipewire.
sound.enable = true; sound.enable = true;
hardware.pulseaudio.enable = false; hardware.pulseaudio.enable = false;
hardware.sane = {
enable = true;
extraBackends = [ pkgs.sane-airscan ];
};
security.rtkit.enable = true; security.rtkit.enable = true;
services.pipewire = { services.pipewire = {
enable = true; enable = true;
@ -79,7 +84,7 @@
users.users.don = { users.users.don = {
isNormalUser = true; isNormalUser = true;
description = "Don Harper"; description = "Don Harper";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" "scanner" "lp" ];
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINd8AdVbQQ/Fmw+b9mI8EMYqIoRkwmSwAOtmlte3incL don@loki" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINd8AdVbQQ/Fmw+b9mI8EMYqIoRkwmSwAOtmlte3incL don@loki"
]; ];