nix/packages/hosts/flipflop.nix

113 lines
2.3 KiB
Nix
Raw Normal View History

2025-02-20 21:55:31 -06:00
{
2025-02-20 22:06:30 -06:00
diskoConfigurations,
2025-02-20 21:58:04 -06:00
hardware,
2025-02-20 21:55:31 -06:00
pkgs,
lib,
config,
...
}:
{
system.stateVersion = "24.11";
2025-02-20 23:21:11 -06:00
networking = {
hostName = "flipflop";
wifi.enable = true;
};
2025-02-20 21:55:31 -06:00
boot.loader.systemd-boot.enable = true;
services.fprintd = {
# TODO: am I missing a driver? see arch wiki for this h/w
enable = false;
# tod.enable = true;
# tod.driver = pkgs.libfprint-2-tod1-goodix;
};
environment.systemPackages =
#with pkgs;
[ ];
# https://wiki.archlinux.org/title/Lenovo_ThinkPad_X1_Yoga_(Gen_3)#Using_acpi_call
systemd.services.activate-touch-hack = {
enable = true;
description = "Touch wake Thinkpad X1 Yoga 3rd gen hack";
unitConfig = {
After = [
"suspend.target"
"hibernate.target"
"hybrid-sleep.target"
"suspend-then-hibernate.target"
];
};
serviceConfig = {
ExecStart = ''
/bin/sh -c "echo '\\_SB.PCI0.LPCB.EC._Q2A' > /proc/acpi/call"
'';
};
wantedBy = [
"suspend.target"
"hibernate.target"
"hybrid-sleep.target"
"suspend-then-hibernate.target"
];
};
boot.initrd.availableKernelModules = [
"xhci_pci"
"nvme"
"usb_storage"
"sd_mod"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [
"kvm-intel"
"acpi_call"
];
boot.extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
hardware = {
graphics = {
enable = true;
enable32Bit = true;
extraPackages = with pkgs; [
intel-media-driver
intel-ocl
intel-vaapi-driver
];
};
};
hardware.bluetooth = {
enable = true;
powerOnBoot = false;
};
2025-02-20 21:58:04 -06:00
imports = with hardware; [
(diskoConfigurations.standardEncrypted { disk = "/dev/nvme0n1"; })
common-cpu-intel
common-pc-ssd
];
2025-02-20 23:21:11 -06:00
lyte.desktop.enable = true;
home-manager.users.daniel = {
lyte.shell.enable = true;
lyte.desktop.enable = true;
home = {
stateVersion = "24.11";
file.".config/easyeffects/output" = {
enable = true;
source = fetchGit {
url = "https://github.com/ceiphr/ee-framework-presets";
rev = "27885fe00c97da7c441358c7ece7846722fd12fa";
};
2025-02-20 21:55:31 -06:00
};
2025-02-20 23:21:11 -06:00
};
services.easyeffects = {
enable = true;
preset = "philonmetal";
};
2025-02-20 21:55:31 -06:00
};
}