nix/packages/hosts/thinker.nix
Daniel Flanagan 2eebb2e66a
Some checks failed
/ check (push) Failing after 10s
chore: start migrating thinker
2025-02-17 21:42:13 -06:00

43 lines
979 B
Nix

{ diskoConfigurations, hardware, ... }:
{
system.stateVersion = "24.11";
networking.hostName = "foxtrot";
boot = {
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
initrd.availableKernelModules = [
"xhci_pci"
"nvme"
"ahci"
];
};
imports = with hardware; [
diskoConfigurations.foxtrot
lenovo-thinkpad-t480
common-pc-laptop-ssd
];
hardware.bluetooth.enable = true;
programs.steam.enable = true;
networking.wifi.enable = true;
lyte.desktop.enable = true;
home-manager.users.daniel = {
lyte.shell.enable = true;
lyte.desktop.enable = true;
home.file.".config/easyeffects/output" = {
enable = true;
source = fetchGit {
url = "https://github.com/ceiphr/ee-framework-presets";
rev = "27885fe00c97da7c441358c7ece7846722fd12fa";
};
};
services.easyeffects = {
enable = true;
preset = "philonmetal";
};
};
}