mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 19:10:21 +00:00
38 lines
709 B
Nix
38 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;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|