nix/packages/hosts/dragon.nix

63 lines
1.4 KiB
Nix
Raw Normal View History

2025-02-14 13:04:04 -06:00
{
pkgs,
config,
hardware,
diskoConfigurations,
...
2025-02-14 13:31:18 -06:00
}:
{
2025-02-14 15:40:53 -06:00
# nix boilerplate
2025-02-14 13:04:04 -06:00
system.stateVersion = "24.11";
networking.hostName = "dragon";
2025-02-14 15:40:53 -06:00
# kernel and bootloader configuration
2025-02-14 13:04:04 -06:00
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader.efi.canTouchEfiVariables = true;
loader.systemd-boot.enable = true;
2025-02-14 13:31:18 -06:00
initrd.availableKernelModules = [
"xhci_pci"
"nvme"
"ahci"
"usbhid"
];
kernelModules = [ "kvm-amd" ];
supportedFilesystems = [ "ntfs" ];
2025-02-14 13:04:04 -06:00
};
2025-02-14 15:40:53 -06:00
# hardware configuration
2025-02-14 13:04:04 -06:00
imports = with hardware; [
2025-02-14 13:31:18 -06:00
(diskoConfigurations.unencrypted { disk = "/dev/nvme0n1"; })
2025-02-14 13:04:04 -06:00
common-cpu-amd
common-gpu-amd
common-pc-ssd
];
2025-02-14 15:40:53 -06:00
hardware.bluetooth.enable = true;
networking.wifi.enable = true;
powerManagement.cpuFreqGovernor = "performance";
# application and services configuration
lyte.desktop.enable = true;
2025-02-14 13:04:04 -06:00
2025-02-14 15:40:53 -06:00
sops = {
defaultSopsFile = ../../secrets/dragon/secrets.yml;
secrets.ddns-pass.mode = "0400";
2025-02-14 13:31:18 -06:00
};
2025-02-14 13:04:04 -06:00
services.deno-netlify-ddns-client = {
passwordFile = config.sops.secrets.ddns-pass.path;
enable = true;
username = "dragon.h";
# TODO: router doesn't even do ipv6 yet...
ipv6 = false;
};
home-manager.users.daniel = {
slippi-launcher = {
enable = true;
2025-02-14 15:40:53 -06:00
isoPath = "${config.users.users.daniel.home}/../games/roms/dolphin/melee.iso";
2025-02-14 13:04:04 -06:00
launchMeleeOnPlay = false;
};
};
}