nix/packages/hosts/dragon.nix

58 lines
1.3 KiB
Nix
Raw Normal View History

2025-02-14 13:04:04 -06:00
{
pkgs,
lib,
config,
hardware,
diskoConfigurations,
...
2025-02-14 13:31:18 -06:00
}:
{
2025-02-14 13:04:04 -06:00
system.stateVersion = "24.11";
home-manager.users.daniel.home.stateVersion = "24.11";
networking.hostName = "dragon";
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
};
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 13:31:18 -06:00
sops.secrets.ddns-pass = {
mode = "0400";
};
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;
};
hardware.bluetooth.enable = true;
networking.wifi.enable = true;
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
home-manager.users.daniel = {
slippi-launcher = {
enable = true;
isoPath = "${config.home-manager.users.daniel.home.homeDirectory}/../games/roms/dolphin/melee.iso";
launchMeleeOnPlay = false;
};
};
}