38 lines
726 B
Nix
38 lines
726 B
Nix
{pkgs, ...}: {
|
|
hardware = {
|
|
sane = {
|
|
enable = true;
|
|
extraBackends = [pkgs.sane-airscan];
|
|
disabledDefaultBackends = ["escl"];
|
|
};
|
|
logitech = {
|
|
wireless = {
|
|
enable = false;
|
|
enableGraphical = false;
|
|
};
|
|
};
|
|
bluetooth = {
|
|
enable = true;
|
|
powerOnBoot = true;
|
|
};
|
|
graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
};
|
|
};
|
|
|
|
fileSystems."/mnt/Garand-Library" = {
|
|
device = "//192.168.1.156/Garand-Library";
|
|
fsType = "cifs";
|
|
options = [
|
|
"credentials=/etc/smb-credentials"
|
|
"uid=1000"
|
|
"gid=100"
|
|
"iocharset=utf8"
|
|
"x-systemd.automount"
|
|
"x-systemd.idle-timeout=60"
|
|
"noauto"
|
|
];
|
|
};
|
|
}
|