Add generated files for inugami

This commit is contained in:
Johannes Jöns 2023-08-14 17:10:54 +02:00
parent 4d26327796
commit c764a4a9f3
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ ... }:
{
imports = [
./hardware-configuration.nix
];
boot.loader = {
grub.enable = false;
generic-extlinux-compatible.enable = true;
};
networking.hostName = "inugami";
}

View file

@ -0,0 +1,28 @@
{ modulesPath, lib, ... }:
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot = {
initrd = {
avaibleKernelModules = [ "xhci_pci"];
kernelModules = [ ];
};
kernelModules = [ ];
extraModulesPackages = [ ];
};
fileSystems."/" = {
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4";
};
swapDevices = [ ];
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = "aarch64-linux";
powerManagement.cpuFreqGovenor = "ondemand";
}