3bc9128dfc
Change-Id: Ic6bc463304643a7f983a5f7c182f95a7706ca35b Reviewed-on: https://cl.tvl.fyi/c/depot/+/5868 Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: sterni <sternenseemann@systemli.org> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
82 lines
2 KiB
Nix
82 lines
2 KiB
Nix
# zamalek is my Huawei MateBook X (unknown year)
|
|
{ depot, lib, pkgs, ... }:
|
|
|
|
config:
|
|
let
|
|
mod = name: depot.path.origSrc + ("/ops/modules/" + name);
|
|
usermod = name: depot.path.origSrc + ("/users/tazjin/nixos/modules/" + name);
|
|
|
|
zdevice = device: {
|
|
inherit device;
|
|
fsType = "zfs";
|
|
};
|
|
in
|
|
{
|
|
imports = [
|
|
(usermod "desktop.nix")
|
|
(usermod "fonts.nix")
|
|
(usermod "hidpi.nix")
|
|
(usermod "home-config.nix")
|
|
(usermod "laptop.nix")
|
|
(usermod "persistence.nix")
|
|
(usermod "physical.nix")
|
|
(usermod "zerotier.nix")
|
|
|
|
(pkgs.home-manager.src + "/nixos")
|
|
] ++ lib.optional (builtins.pathExists ./local-config.nix) ./local-config.nix;
|
|
|
|
tvl.cache.enable = true;
|
|
|
|
boot = {
|
|
initrd.availableKernelModules = [ "nvme" "xhci_pci" ];
|
|
loader.systemd-boot.enable = true;
|
|
loader.efi.canTouchEfiVariables = true;
|
|
supportedFilesystems = [ "zfs" ];
|
|
zfs.devNodes = "/dev/";
|
|
|
|
extraModprobeConfig = ''
|
|
options snd_hda_intel power_save=1
|
|
options iwlwifi power_save=1
|
|
options iwldvm force_cam=0
|
|
options i915 enable_guc=3 enable_fbc=1
|
|
'';
|
|
};
|
|
|
|
fileSystems = {
|
|
"/" = zdevice "zpool/ephemeral/root";
|
|
"/home" = zdevice "zpool/ephemeral/home";
|
|
"/persist" = zdevice "zpool/persistent/data" // { neededForBoot = true; };
|
|
"/nix" = zdevice "zpool/persistent/nix";
|
|
"/depot" = zdevice "zpool/persistent/depot";
|
|
|
|
"/boot" = {
|
|
device = "/dev/disk/by-uuid/2487-3908";
|
|
fsType = "vfat";
|
|
};
|
|
};
|
|
|
|
networking = {
|
|
hostName = "zamalek";
|
|
domain = "tvl.su";
|
|
hostId = "ee399356";
|
|
networkmanager.enable = true;
|
|
networkmanager.dns = "none";
|
|
|
|
nameservers = [
|
|
"8.8.8.8"
|
|
"8.8.4.4"
|
|
];
|
|
};
|
|
|
|
hardware = {
|
|
cpu.intel.updateMicrocode = true;
|
|
bluetooth.enable = true;
|
|
enableRedistributableFirmware = true;
|
|
opengl.enable = true;
|
|
};
|
|
|
|
services.xserver.libinput.touchpad.clickMethod = "clickfinger";
|
|
services.tailscale.enable = true;
|
|
|
|
system.stateVersion = "21.11";
|
|
}
|