2024-06-27 11:24:25 +02:00
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page, on
|
|
|
|
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
|
|
|
|
2024-07-03 18:59:55 +02:00
|
|
|
{ pkgs, asahi-firmware, ... }:
|
|
|
|
{ config, ... }:
|
2024-06-27 11:24:25 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
# 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";
|
2024-07-03 18:59:55 +02:00
|
|
|
|
|
|
|
fileSystems.foxshare = {
|
|
|
|
fsType = "exfat";
|
|
|
|
device = "/dev/disk/by-label/foxshare";
|
|
|
|
mountPoint = "/home/xenia/foxshare";
|
|
|
|
options = ["uid=${builtins.toString config.users.users.xenia.uid}" "nofail"];
|
|
|
|
};
|
2024-06-27 11:24:25 +02:00
|
|
|
}
|
|
|
|
|