19 lines
505 B
Nix
19 lines
505 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./hw-nemesis.nix
|
|
./modules/common.nix
|
|
./modules/desktop.nix
|
|
./modules/bootloaders/systemd-boot.nix
|
|
./modules/hardware/nvidia.nix
|
|
./modules/hardware/bluetooth.nix
|
|
];
|
|
|
|
networking.hostName = "nemesis";
|
|
system.stateVersion = "24.11";
|
|
boot.binfmt.emulatedSystems = ["wasm32-wasi" "x86_64-windows" "aarch64-linux"];
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
boot.kernelModules = ["dm_crypt"];
|
|
boot.plymouth = {
|
|
enable = true;
|
|
};
|
|
}
|