28 lines
729 B
Nix
28 lines
729 B
Nix
{ pkgs, asahi-firmware, ... }:
|
|
{ config, ... }:
|
|
|
|
{
|
|
# Use the systemd-boot EFI boot loader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = false;
|
|
hardware.asahi.peripheralFirmwareDirectory = asahi-firmware;
|
|
|
|
hardware.asahi.enable = true;
|
|
hardware.asahi.setupAsahiSound = true;
|
|
|
|
hardware.asahi.useExperimentalGPUDriver = true;
|
|
hardware.asahi.experimentalGPUInstallMode = "replace";
|
|
|
|
fileSystems.foxshare = {
|
|
fsType = "exfat";
|
|
device = "/dev/disk/by-label/foxshare";
|
|
mountPoint = "/home/xenia/foxshare";
|
|
options = ["uid=${builtins.toString config.users.users.xenia.uid}" "nofail"];
|
|
};
|
|
swapDevices = [{
|
|
device = "/swap";
|
|
size = 16 * 1024; # 16GB
|
|
}];
|
|
}
|
|
|