mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
54 lines
1.5 KiB
Nix
54 lines
1.5 KiB
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
./host-specific.nix
|
|
../../modules/home-manager.nix
|
|
../../modules/nur-and-unstable.nix
|
|
../../modules/base.nix
|
|
../../modules/headless.nix
|
|
|
|
../../modules/ssh-fde-unlock.nix
|
|
#../../modules/git.nix
|
|
../../modules/zsh.nix
|
|
#../../modules/ssh-client.nix
|
|
../../modules/ssh-server.nix
|
|
|
|
#../../modules/podman.nix
|
|
../../modules/docker.nix
|
|
#../../modules/docker-pushrm.nix
|
|
|
|
../../modules/sendmail-mta.nix
|
|
../../modules/journalwatch.nix
|
|
|
|
../../modules/btrbk
|
|
./btrbk-config.nix
|
|
../../modules/netcup-dns.nix
|
|
../../modules/de-p1st-monitor.nix
|
|
../../modules/spin-down-hdd.nix
|
|
|
|
../../modules/btrfs-scrub.nix
|
|
../../modules/btrfs-mount-options.nix
|
|
];
|
|
|
|
networking.hostName = "yodaNas";
|
|
boot.initrd.luks.devices."luks-3d974bd0-f373-469b-8e9c-2d5516e9f0f5".allowDiscards = true;
|
|
yoda.btrfsFileSystems = ["/" "/mnt/data" "/mnt/backup"];
|
|
#yoda.btrfsMounts = yoda.btrfsFileSystems;
|
|
yoda.spin-down-hdd = [
|
|
# 4tb1
|
|
"ata-WDC_WD40EFRX-68N32N0_WD-WCC7K0CPF0N1"
|
|
# 3tb1
|
|
"ata-WDC_WD30EFRX-68EUZN0_WD-WCC4N1173157"
|
|
# 3tb2
|
|
"ata-WDC_WD30EFRX-68EUZN0_WD-WMC4N0564095"
|
|
];
|
|
|
|
boot.kernelParams = [
|
|
# Microarchitectural Data Sampling (MDS), see https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html#mitigation-control-on-the-kernel-command-line
|
|
"mds=full,nosmt"
|
|
];
|
|
boot.kernelPackages = pkgs.linuxPackages;
|
|
}
|