2023-12-04 23:02:43 +00:00
|
|
|
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
|
|
|
|
# and may be overwritten by future invocations. Please make changes
|
|
|
|
|
# to /etc/nixos/configuration.nix instead.
|
2024-03-02 03:13:17 +00:00
|
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
pkgs,
|
|
|
|
|
modulesPath,
|
|
|
|
|
...
|
|
|
|
|
}:
|
2023-12-04 23:02:43 +00:00
|
|
|
|
|
|
|
|
|
{
|
2024-11-20 22:01:34 +00:00
|
|
|
|
imports = [
|
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
|
];
|
2023-12-04 23:02:43 +00:00
|
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "nvme" ];
|
2024-11-20 22:01:34 +00:00
|
|
|
|
boot.initrd.kernelModules = [ ];
|
2023-12-04 23:02:43 +00:00
|
|
|
|
boot.kernelModules = [ ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
fileSystems."/" = {
|
2024-11-20 22:01:34 +00:00
|
|
|
|
device = "UUID=5bdb4b7f-092b-4117-a865-6828bf78a52e";
|
|
|
|
|
fsType = "bcachefs";
|
2023-12-04 23:02:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" = {
|
2024-11-20 22:01:34 +00:00
|
|
|
|
device = "/dev/disk/by-uuid/8445-860A";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
options = [
|
|
|
|
|
"fmask=0022"
|
|
|
|
|
"dmask=0022"
|
|
|
|
|
];
|
2023-12-04 23:02:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
2024-11-20 22:01:34 +00:00
|
|
|
|
swapDevices = [ ];
|
2023-12-04 23:02:43 +00:00
|
|
|
|
|
|
|
|
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
|
|
|
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
|
|
|
|
# still possible to use this option, but it's recommended to use it in conjunction
|
|
|
|
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.enP4p65s0.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
|
|
|
|
|
}
|