Rename 'laptop' suite to 'desktop'. Don't seperate hosts by suite.
This commit is contained in:
parent
20c6461e14
commit
e568306ec5
9 changed files with 3 additions and 3 deletions
|
@ -1,43 +0,0 @@
|
|||
{pkgs, ...}: {
|
||||
boot = {
|
||||
kernelPackages = pkgs.linuxKernel.packages.linux_rpi4;
|
||||
initrd.availableKernelModules = [
|
||||
"xhci_pci"
|
||||
"usbhid"
|
||||
"usb_storage"
|
||||
];
|
||||
loader = {
|
||||
grub.enable = false;
|
||||
generic-extlinux-compatible.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/disk/by-label/NIXOS_SD";
|
||||
fsType = "ext4";
|
||||
options = ["noatime"];
|
||||
};
|
||||
};
|
||||
|
||||
# Open ports for DHCP server.
|
||||
networking.firewall.allowedUDPPorts = [
|
||||
53
|
||||
67
|
||||
];
|
||||
|
||||
# Enable WebOne HTTP proxy.
|
||||
services.webone.enable = true;
|
||||
|
||||
# Enable Netatalk AFP fileserver.
|
||||
services.netatalk = {
|
||||
enable = true;
|
||||
settings = {
|
||||
Global."uam list" = "uams_guest.so";
|
||||
iMac = {
|
||||
path = "/srv/iMac";
|
||||
"read-only" = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue