32 lines
589 B
Nix
32 lines
589 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.stylix.nixosModules.stylix
|
|
inputs.catppuccin.nixosModules.catppuccin
|
|
./hardware-configuration.nix
|
|
./network.nix
|
|
../server
|
|
../themes.nix
|
|
# ../server/searxng.nix
|
|
];
|
|
networking.hostName = "w1";
|
|
boot = {
|
|
initrd = {
|
|
availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ];
|
|
kernelModules = [ "nvme" ];
|
|
};
|
|
loader = {
|
|
grub = {
|
|
enable = true;
|
|
device = "/dev/sda";
|
|
efiSupport = false;
|
|
};
|
|
};
|
|
};
|
|
}
|