174 lines
4.8 KiB
Nix
174 lines
4.8 KiB
Nix
#
|
||
# 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 =
|
||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||
];
|
||
|
||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
|
||
boot.initrd.kernelModules = [ "vfio_pci" "vfio" "vfio_iommu_type1" ];
|
||
boot.kernelModules = [ "kvm-amd" ];
|
||
boot.extraModulePackages = [ ];
|
||
boot.tmp.useTmpfs = true;
|
||
zramSwap.enable = true;
|
||
|
||
services.btrfs.autoScrub = {
|
||
enable = true;
|
||
interval = "monthly";
|
||
fileSystems = [
|
||
"/"
|
||
];
|
||
};
|
||
|
||
services.btrbk = {
|
||
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" = {};
|
||
};
|
||
};
|
||
};
|
||
};
|
||
};
|
||
};
|
||
};
|
||
|
||
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" ];
|
||
};
|
||
|
||
fileSystems."/mnt/snapshots/root" =
|
||
{ device = "/dev/disk/by-label/NIXROOT";
|
||
fsType = "btrfs";
|
||
options = [ "compress=zstd,space_cache=v2,ssd,noatime,subvolid=5,discard=async" ];
|
||
};
|
||
|
||
fileSystems."/boot" =
|
||
{ device = "/dev/disk/by-label/NIXBOOT";
|
||
fsType = "vfat";
|
||
};
|
||
|
||
fileSystems."/mnt/Pluto" =
|
||
{ device = "nas:/Pluto";
|
||
fsType = "nfs";
|
||
options = [ "noauto,users,x-systemd.automount,x-systemd.device-timeout=10,soft,timeo=14,x-systemd.idle-timeout=1min,sec=sys,exec,nfsvers=4.2" ];
|
||
};
|
||
|
||
fileSystems."/mnt/Mars" =
|
||
{ device = "jupiter:/Mars";
|
||
fsType = "nfs";
|
||
options = [ "noauto,users,x-systemd.automount,x-systemd.device-timeout=10,soft,timeo=14,x-systemd.idle-timeout=1min,sec=sys,exec,nfsvers=4.2" ];
|
||
};
|
||
|
||
|
||
swapDevices = [ ];
|
||
|
||
networking = {
|
||
vswitches = {
|
||
vs0 = {
|
||
interfaces = {
|
||
enp34s0 = { };
|
||
lo1 = {
|
||
type = "internal";
|
||
};
|
||
#enp34s0iot = {
|
||
# type = "internal";
|
||
# vlan = 100;
|
||
#};
|
||
};
|
||
};
|
||
};
|
||
useDHCP = false; # Deprecated
|
||
hostName = "hades";
|
||
domain = "home.opel-online.de";
|
||
networkmanager = {
|
||
enable = false;
|
||
};
|
||
timeServers = [
|
||
"192.168.2.1"
|
||
];
|
||
interfaces = {
|
||
#enp34s0 = {
|
||
# useDHCP = true; # For versatility sake, manually edit IP on nm-applet.
|
||
# #ipv4.addresses = [ {
|
||
# # address = "192.168.0.51";
|
||
# # prefixLength = 24;
|
||
# #} ];
|
||
#};
|
||
#enp34s0iot.useDHCP = true;
|
||
lo1 = {
|
||
useDHCP = true;
|
||
macAddress = "1a:20:e9:ce:9c:1a";
|
||
};
|
||
};
|
||
#defaultGateway = "192.168.0.1";
|
||
defaultGateway6 = {
|
||
address = "fe80::1";
|
||
interface = "lo1";
|
||
};
|
||
#nameservers = [ "192.168.0.4" ];
|
||
#firewall = {
|
||
# enable = false;
|
||
# #allowedUDPPorts = [ 53 67 ];
|
||
# #allowedTCPPorts = [ 53 80 443 9443 ];
|
||
#};
|
||
};
|
||
|
||
systemd.services = {
|
||
"ovsdb".partOf = [ "network-setup.service" ];
|
||
"ovs-vswitchd".partOf = [ "network-setup.service" ];
|
||
"network-addresses-lo1".partOf = [ "network-setup.service" ];
|
||
};
|
||
|
||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||
#powerManagement.powertop.enable = true;
|
||
powerManagement = {
|
||
scsiLinkPolicy = "med_power_with_dipm";
|
||
};
|
||
}
|