f4ad1d51f4
* Create searxng.nix * fix: folers * factorio wip * fix: remove stale locks * feat: factorio and saerx --------- Co-authored-by: Truxnell <9149206+truxnell@users.noreply.github.com>
79 lines
1.9 KiB
Nix
79 lines
1.9 KiB
Nix
# Edit this configuration file to define what should be installed on
|
|
# your system. Help is available in the configuration.nix(5) man page, on
|
|
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
|
{ config
|
|
, lib
|
|
, pkgs
|
|
, ...
|
|
}: {
|
|
mySystem.purpose = "Development";
|
|
mySystem.services = {
|
|
openssh.enable = true;
|
|
podman.enable = true;
|
|
traefik.enable = true;
|
|
|
|
gatus.enable = true;
|
|
homepage.enable = true;
|
|
# backrest.enable = true;
|
|
|
|
plex.enable = true;
|
|
tautulli.enable = true;
|
|
syncthing.enable = true;
|
|
searxng.enable = true;
|
|
factorio.freight-forwarding.enable = true;
|
|
whoogle.enable = true;
|
|
|
|
|
|
};
|
|
mySystem.system.systemd.pushover-alerts.enable = false;
|
|
|
|
mySystem.nfs.nas.enable = true;
|
|
mySystem.persistentFolder = "/persistent";
|
|
mySystem.system.motd.networkInterfaces = [ "eno1" ];
|
|
|
|
# Dev machine
|
|
# mySystem.system.resticBackup =
|
|
# {
|
|
# local.enable = false;
|
|
# remote.enable = false;
|
|
# };
|
|
|
|
boot = {
|
|
|
|
initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
|
initrd.kernelModules = [ ];
|
|
kernelModules = [ ];
|
|
extraModulePackages = [ ];
|
|
|
|
# for managing/mounting ntfs
|
|
supportedFilesystems = [ "ntfs" ];
|
|
|
|
loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
# why not ensure we can memtest workstatons easily?
|
|
# TODO check whether this is actually working, cant see it in grub?
|
|
grub.memtest86.enable = true;
|
|
|
|
};
|
|
};
|
|
|
|
networking.hostName = "durandal"; # Define your hostname.
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
fileSystems."/" =
|
|
{
|
|
device = "/dev/disk/by-uuid/2e843998-f409-4ccc-bc7c-07099ee0e936";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
fileSystems."/boot" =
|
|
{
|
|
device = "/dev/disk/by-uuid/12CE-A600";
|
|
fsType = "vfat";
|
|
};
|
|
|
|
swapDevices =
|
|
[{ device = "/dev/disk/by-uuid/0ae2765b-f3f4-4b1a-8ea6-599f37504d70"; }];
|
|
|
|
}
|