tvl-depot/users/tazjin/nixos/zamalek/default.nix
Vincent Ambo 609b68031b chore(3p/sources): bump channels & overlays (2024-09-01)
Included changes:

* users/aspen: explicitly use open-source nvidia driver

  This now has to be specified explicitly, otherwise evaluation fails with an
  error.
* users/aspen: nixfmt -> nixfmt-classic
* users/aspen: fixes for renamed packages & options
* users/tazjin: fixes for renamed packages & options
* 3p/overlays: remove cbtemulator patch (merged upstream)
* tvix/shell: remove unnecessary patches (merged upstream)
* 3p/rust-crates: mark libgit2_sys as broken
* users/Profpatsch: mark git-db as broken
* 3p/overlays: pick `mypaint` from stable channel
* tvix: fix comments that clippy doesn't like anymore
* tvix/glue: disable a misfiring clippy lint (applying its suggestion breaks
  code below)

Change-Id: I6d3fc027694bbe7425a2d25dc53d65467a44f3b0
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12403
Tested-by: BuildkiteCI
Reviewed-by: aspen <root@gws.fyi>
Reviewed-by: Profpatsch <mail@profpatsch.de>
Autosubmit: tazjin <tazjin@tvl.su>
2024-09-05 20:56:31 +00:00

83 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 "chromium.nix")
(usermod "desktop.nix")
(usermod "fonts.nix")
(usermod "hidpi.nix")
(usermod "home-config.nix")
(usermod "laptop.nix")
(usermod "persistence.nix")
(usermod "physical.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;
nameservers = [
"8.8.8.8"
"8.8.4.4"
];
};
hardware = {
cpu.intel.updateMicrocode = true;
bluetooth.enable = true;
enableRedistributableFirmware = true;
graphics.enable = true;
};
services.libinput.touchpad.clickMethod = "clickfinger";
services.libinput.touchpad.tapping = false;
services.avahi.enable = true;
services.tailscale.enable = true;
system.stateVersion = "21.11";
}