mirror of
https://github.com/blahai/nyx.git
synced 2025-01-19 03:20:20 +00:00
37 lines
709 B
Nix
37 lines
709 B
Nix
{ pkgs, modulesPath, ... }: {
|
|
|
|
imports = [
|
|
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
|
|
];
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_6_11;
|
|
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
neovim
|
|
disko
|
|
parted
|
|
git
|
|
nixd
|
|
];
|
|
|
|
networking = {
|
|
networkmanager.enable = true;
|
|
wireless.enable = true;
|
|
};
|
|
|
|
nix = {
|
|
package = pkgs.lix;
|
|
settings = {
|
|
experimental-features = [ "nix-command" "flakes" "auto-allocate-uids" ];
|
|
max-jobs = "auto";
|
|
sandbox = true;
|
|
auto-optimise-store = true;
|
|
keep-going = true;
|
|
warn-dirty = false;
|
|
use-xdg-base-directories = true;
|
|
};
|
|
};
|
|
|
|
}
|