Compare commits

..

No commits in common. "66aede16c112cb21c32882ac3818c57dad5ddd60" and "64d0a56eb8aa347358574186c243f6048a8a7206" have entirely different histories.

2 changed files with 10 additions and 30 deletions

View file

@ -13,24 +13,19 @@
}; };
}; };
# Root filesystem.
fileSystems = { fileSystems = {
# Root filesystem.
"/" = { "/" = {
device = "/dev/disk/by-label/NIXOS_SD"; device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4"; fsType = "ext4";
options = ["noatime"]; options = ["noatime"];
}; };
};
# Printer Sharing. # AFP share.
services.printing = { "/srv/iMac" = {
enable = true; device = "/dev/disk/by-uuid/48843b25-4d8c-4638-a5f8-fb3901e1165e";
drivers = [pkgs.cups-dymo]; # Dymo label printer. fsType = "ext4";
listenAddresses = ["*:631"]; };
allowFrom = ["all"];
browsing = true;
defaultShared = true;
openFirewall = true;
}; };
# Enable WebOne HTTP proxy. # Enable WebOne HTTP proxy.
@ -51,21 +46,12 @@
}; };
}; };
systemd.tmpfiles.settings = {
"10-netatalk" = {
"/srv/netatalk" = {
d = {
group = "users";
mode = "0755";
user = "fern";
};
};
};
};
# Open ports for services. # Open ports for services.
networking.firewall = { networking.firewall = {
allowedUDPPorts = [53 67]; # DHCP server. allowedUDPPorts = [
53 # DHCP server.
67 # DHCP server.
];
allowedTCPPorts = [8080 548]; # WebOne & Netatalk. allowedTCPPorts = [8080 548]; # WebOne & Netatalk.
}; };
} }

View file

@ -314,12 +314,6 @@ with lib; {
drivers = [pkgs.brlaser pkgs.cups-dymo]; # Brother laser printer & Dymo label printer. drivers = [pkgs.brlaser pkgs.cups-dymo]; # Brother laser printer & Dymo label printer.
}; };
# Scanner drivers.
hardware.sane = {
enable = true;
extraBackends = [pkgs.cnijfilter2];
};
# https://github.com/tailscale/tailscale/issues/4432#issuecomment-1112819111 # https://github.com/tailscale/tailscale/issues/4432#issuecomment-1112819111
networking.firewall.checkReversePath = false; networking.firewall.checkReversePath = false;