configuration.nix/hosts/rico0/hardware/default.nix

13 lines
270 B
Nix

_: {
imports = [ ./filesystem.nix ./kernel.nix ];
hardware.enableRedistributableFirmware = true;
boot = {
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
supportedFilesystems = [ "vfat" "btrfs" "ext4" ];
};
}