2023-08-02 00:24:35 +00:00
|
|
|
{ pkgs, ... }:
|
2023-08-02 00:13:35 +00:00
|
|
|
|
|
|
|
{
|
2023-08-02 00:24:35 +00:00
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
2023-10-22 20:56:06 +00:00
|
|
|
./jellyfin.nix
|
2024-04-16 02:28:04 +00:00
|
|
|
./samba.nix
|
2023-08-02 00:24:35 +00:00
|
|
|
];
|
2023-08-02 00:13:35 +00:00
|
|
|
|
2024-04-13 05:02:45 +00:00
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
2023-08-02 00:13:35 +00:00
|
|
|
|
2024-04-16 03:02:23 +00:00
|
|
|
# ZFS support
|
|
|
|
boot.supportedFilesystems = [ "zfs" ];
|
|
|
|
networking.hostId = "64cc144d";
|
|
|
|
# https://old.reddit.com/r/zfs/comments/1826lgs/psa_its_not_block_cloning_its_a_data_corruption/
|
|
|
|
boot.kernelParams = [ "zfs.zfs_dmu_offset_next_sync=0" ];
|
|
|
|
|
2023-08-02 01:59:06 +00:00
|
|
|
beatific.hostName = "backyard";
|
2023-12-23 21:01:26 +00:00
|
|
|
beatific.defaults.tvbSync = false;
|
2023-08-02 00:13:35 +00:00
|
|
|
|
|
|
|
# Enable networking
|
|
|
|
networking.networkmanager.enable = true;
|
2023-08-02 15:18:26 +00:00
|
|
|
users.users.tvb.extraGroups = [ "networkmanager" ];
|
2023-08-02 00:13:35 +00:00
|
|
|
|
2023-08-02 15:39:25 +00:00
|
|
|
networking.firewall = {
|
|
|
|
enable = true;
|
|
|
|
};
|
2023-08-02 00:13:35 +00:00
|
|
|
|
2024-04-16 21:09:02 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
ffmpeg # omnipotent media tool
|
|
|
|
smartmontools # provides smartctl drive inspector
|
|
|
|
];
|
|
|
|
|
2023-08-02 15:39:25 +00:00
|
|
|
# This value governs how some stateful data, like databases, are handled
|
|
|
|
# across different versions of NixOS. This should not be changed to a new
|
|
|
|
# release unless the sysadmin has determined that no services would be
|
|
|
|
# adversely affected by changing this.
|
|
|
|
system.stateVersion = "23.05";
|
2023-08-02 00:13:35 +00:00
|
|
|
|
|
|
|
}
|