2023-09-03 10:18:04 +02:00
|
|
|
|
#
|
|
|
|
|
# Hardware settings for Teclast F5 10" Laptop
|
|
|
|
|
# NixOS @ sda2
|
|
|
|
|
#
|
|
|
|
|
# flake.nix
|
|
|
|
|
# └─ ./hosts
|
|
|
|
|
# └─ ./laptop
|
|
|
|
|
# └─ hardware-configuration.nix *
|
|
|
|
|
#
|
|
|
|
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
|
|
|
|
# and may be overwritten by future invocations. Please make changes
|
|
|
|
|
# to /etc/nixos/configuration.nix instead.
|
|
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
2023-10-29 09:46:49 +01:00
|
|
|
|
[(modulesPath + "/profiles/qemu-guest.nix")] ++
|
2023-10-29 11:07:01 +01:00
|
|
|
|
[( import ../../modules/hardware/backup.nix )];
|
2023-09-03 10:18:04 +02:00
|
|
|
|
|
2023-10-01 09:22:19 +02:00
|
|
|
|
boot.initrd.availableKernelModules = [ "uhci_hcd" "ehci_pci" "ahci" "virtio_pci" "virtio_scsi" "sr_mod" "virtio_blk" ];
|
|
|
|
|
boot.initrd.kernelModules = [ ];
|
2023-10-01 20:24:46 +02:00
|
|
|
|
boot.initrd.secrets = {
|
|
|
|
|
"/root/NASKeyfile" =
|
|
|
|
|
/root/NASKeyfile;
|
|
|
|
|
};
|
|
|
|
|
boot.initrd.luks.devices = {
|
|
|
|
|
NAS-RAID1 = {
|
2023-12-29 09:45:00 +01:00
|
|
|
|
device = "/dev/disk/by-uuid/78c74410-c840-49b0-8a29-456d60c38217";
|
|
|
|
|
keyFile = "/root/NASKeyfile";
|
|
|
|
|
};
|
|
|
|
|
NAS-RAID1_2 = {
|
|
|
|
|
device = "/dev/disk/by-uuid/dda6e698-4f0a-4d71-a06c-656b87374ed7";
|
2023-10-01 20:24:46 +02:00
|
|
|
|
keyFile = "/root/NASKeyfile";
|
|
|
|
|
};
|
|
|
|
|
};
|
2023-10-01 09:22:19 +02:00
|
|
|
|
boot.kernelModules = [ ];
|
2023-09-03 10:18:04 +02:00
|
|
|
|
boot.extraModulePackages = [ ];
|
2023-09-23 09:19:56 +02:00
|
|
|
|
boot.tmp.useTmpfs = false;
|
|
|
|
|
boot.tmp.cleanOnBoot = true;
|
2023-09-03 10:18:04 +02:00
|
|
|
|
zramSwap.enable = true;
|
|
|
|
|
|
|
|
|
|
services.btrfs.autoScrub = {
|
|
|
|
|
enable = true;
|
|
|
|
|
interval = "monthly";
|
|
|
|
|
fileSystems = [
|
|
|
|
|
"/"
|
2023-10-01 09:22:19 +02:00
|
|
|
|
"/mnt/Mars"
|
2023-10-01 20:24:46 +02:00
|
|
|
|
"/mnt/Pluto"
|
2023-09-03 10:18:04 +02:00
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
services.btrbk = {
|
2024-10-14 17:46:26 +02:00
|
|
|
|
extraPackages = [ pkgs.lz4 pkgs.mbuffer ];
|
2023-09-03 10:18:04 +02:00
|
|
|
|
instances = {
|
|
|
|
|
hf = {
|
|
|
|
|
onCalendar = "hourly";
|
|
|
|
|
settings = {
|
|
|
|
|
incremental = "yes";
|
|
|
|
|
snapshot_create = "ondemand";
|
|
|
|
|
snapshot_dir = "@snapshots";
|
|
|
|
|
timestamp_format = "long";
|
|
|
|
|
|
|
|
|
|
snapshot_preserve = "2m 2w 5d 5h";
|
|
|
|
|
snapshot_preserve_min = "latest";
|
|
|
|
|
|
|
|
|
|
volume = {
|
|
|
|
|
"/mnt/snapshots/root" = {
|
|
|
|
|
snapshot_create = "always";
|
|
|
|
|
subvolume = {
|
|
|
|
|
"@" = {};
|
|
|
|
|
"@home" = {};
|
2023-10-01 09:22:19 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
volume = {
|
|
|
|
|
"/mnt/snapshots/Mars" = {
|
|
|
|
|
snapshot_create = "always";
|
|
|
|
|
subvolume = {
|
2023-09-10 09:36:07 +02:00
|
|
|
|
"@nas" = {};
|
2023-09-03 10:18:04 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
2023-10-01 20:24:46 +02:00
|
|
|
|
lf = {
|
|
|
|
|
onCalendar = "daily";
|
|
|
|
|
settings = {
|
|
|
|
|
incremental = "yes";
|
|
|
|
|
snapshot_create = "ondemand";
|
|
|
|
|
snapshot_dir = "@snapshots";
|
|
|
|
|
timestamp_format = "long";
|
|
|
|
|
|
|
|
|
|
snapshot_preserve = "2m 2w 5d";
|
|
|
|
|
snapshot_preserve_min = "latest";
|
|
|
|
|
|
|
|
|
|
volume = {
|
|
|
|
|
"/mnt/snapshots/Pluto" = {
|
|
|
|
|
snapshot_create = "always";
|
|
|
|
|
subvolume = {
|
|
|
|
|
"@" = {};
|
|
|
|
|
"@/Backups" = {};
|
|
|
|
|
"@/Games" = {};
|
|
|
|
|
"@/IT" = {};
|
|
|
|
|
"@/Media" = {};
|
|
|
|
|
"@/Pictures" = {};
|
|
|
|
|
"@/Rest" = {};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
2023-09-03 10:18:04 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
|
|
|
|
{ device = "/dev/disk/by-label/NIXROOT";
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
options = [ "compress=zstd,space_cache=v2,ssd,noatime,subvol=@,discard=async" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/home" =
|
|
|
|
|
{ device = "/dev/disk/by-label/NIXROOT";
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
options = [ "compress=zstd,space_cache=v2,ssd,noatime,subvol=@home,discard=async" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/srv" =
|
|
|
|
|
{ device = "/dev/disk/by-label/NIXROOT";
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
options = [ "compress=zstd,space_cache=v2,ssd,noatime,subvol=@srv,discard=async" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/nix" =
|
|
|
|
|
{ device = "/dev/disk/by-label/NIXROOT";
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
options = [ "compress=zstd,space_cache=v2,ssd,noatime,subvol=@nix,discard=async" ];
|
|
|
|
|
};
|
|
|
|
|
|
2023-09-23 09:19:56 +02:00
|
|
|
|
fileSystems."/swap" =
|
|
|
|
|
{ device = "/dev/disk/by-label/NIXROOT";
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
options = [ "compress=zstd,space_cache=v2,ssd,noatime,subvol=@swap,discard=async" ];
|
|
|
|
|
};
|
|
|
|
|
|
2023-09-03 10:18:04 +02:00
|
|
|
|
fileSystems."/mnt/snapshots/root" =
|
|
|
|
|
{ device = "/dev/disk/by-label/NIXROOT";
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
options = [ "compress=zstd,space_cache=v2,ssd,noatime,subvolid=5,discard=async" ];
|
|
|
|
|
};
|
|
|
|
|
|
2023-09-03 19:39:29 +02:00
|
|
|
|
fileSystems."/mnt/snapshots/Mars" =
|
2023-10-01 10:33:50 +02:00
|
|
|
|
{ device = "/dev/disk/by-label/MARS";
|
2023-09-03 19:39:29 +02:00
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
options = [ "compress=zstd,space_cache=v2,ssd,noatime,subvolid=5,discard=async" ];
|
|
|
|
|
};
|
|
|
|
|
|
2023-10-01 20:24:46 +02:00
|
|
|
|
fileSystems."/mnt/snapshots/Pluto" =
|
|
|
|
|
{ device = "/dev/disk/by-label/NAS-RAID";
|
|
|
|
|
fsType = "btrfs";
|
2023-12-29 09:45:00 +01:00
|
|
|
|
options = [ "compress=zstd:8,noatime,subvolid=5" ];
|
2023-10-01 20:24:46 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/mnt/Pluto" =
|
|
|
|
|
{ device = "/dev/disk/by-label/NAS-RAID";
|
|
|
|
|
fsType = "btrfs";
|
2023-12-29 09:45:00 +01:00
|
|
|
|
options = [ "compress=zstd:8,noatime,subvol=@" ];
|
2023-10-01 20:24:46 +02:00
|
|
|
|
};
|
|
|
|
|
|
2023-09-03 19:39:29 +02:00
|
|
|
|
fileSystems."/mnt/Mars" =
|
2023-10-01 10:33:50 +02:00
|
|
|
|
{ device = "/dev/disk/by-label/MARS";
|
2023-09-03 19:39:29 +02:00
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
options = [ "compress=zstd,space_cache=v2,ssd,noatime,subvol=@nas,discard=async" ];
|
|
|
|
|
};
|
2023-09-03 10:18:04 +02:00
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
|
|
|
|
{ device = "/dev/disk/by-label/NIXBOOT";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
2023-10-01 20:24:46 +02:00
|
|
|
|
fileSystems."/export/Pluto" =
|
|
|
|
|
{ device = "/mnt/Pluto";
|
|
|
|
|
options = [ "bind" ];
|
|
|
|
|
};
|
2023-09-03 19:39:29 +02:00
|
|
|
|
|
|
|
|
|
fileSystems."/export/Mars" =
|
|
|
|
|
{ device = "/mnt/Mars";
|
|
|
|
|
options = [ "bind" ];
|
|
|
|
|
};
|
2023-09-03 10:18:04 +02:00
|
|
|
|
|
2023-09-23 09:19:56 +02:00
|
|
|
|
swapDevices = [ { device = "/swap/swapfile"; } ];
|
2023-09-03 10:18:04 +02:00
|
|
|
|
|
2024-08-22 19:08:19 +02:00
|
|
|
|
systemd.network = {
|
|
|
|
|
enable = true;
|
|
|
|
|
networks = {
|
|
|
|
|
"10-lan" = {
|
|
|
|
|
matchConfig.Name = "enp6s18";
|
|
|
|
|
ntp = [ "192.168.2.1" ];
|
|
|
|
|
#domains = [ "home.opel-online.de" ];
|
|
|
|
|
networkConfig = {
|
|
|
|
|
DHCP = "yes";
|
|
|
|
|
IPv6AcceptRA = true;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
2023-09-03 10:18:04 +02:00
|
|
|
|
networking = {
|
|
|
|
|
hostName = "jupiter";
|
|
|
|
|
domain = "home.opel-online.de";
|
2024-08-22 19:08:19 +02:00
|
|
|
|
useDHCP = false; # For versatility sake, manually edit IP on nm-applet.
|
2023-09-03 10:18:04 +02:00
|
|
|
|
#firewall = {
|
|
|
|
|
# enable = false;
|
|
|
|
|
# #allowedUDPPorts = [ 53 67 ];
|
|
|
|
|
# #allowedTCPPorts = [ 53 80 443 9443 ];
|
|
|
|
|
#};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
|
powerManagement = {
|
|
|
|
|
cpuFreqGovernor = lib.mkDefault "powersave";
|
|
|
|
|
powertop.enable = true;
|
2024-06-17 20:47:42 +02:00
|
|
|
|
#scsiLinkPolicy = "med_power_with_dipm";
|
2023-10-01 20:24:46 +02:00
|
|
|
|
powerUpCommands = ''
|
|
|
|
|
${pkgs.hdparm}/sbin/hdparm -S 150 /dev/disk/by-uuid/57e6446d-faca-4b67-9063-e8d9afb80088
|
|
|
|
|
'';
|
2023-09-03 10:18:04 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|