configuration.nix/hosts/rico1/hardware/default.nix

14 lines
270 B
Nix
Raw Normal View History

2024-06-25 00:23:05 +05:30
_: {
imports = [ ./filesystem.nix ./kernel.nix ];
2024-06-29 01:08:28 +05:30
hardware.enableRedistributableFirmware = true;
boot = {
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
2024-06-25 00:23:05 +05:30
};
2024-06-29 01:08:28 +05:30
supportedFilesystems = [ "vfat" "btrfs" "ext4" ];
2024-06-25 00:23:05 +05:30
};
}