mirror of
https://github.com/blahai/nyx.git
synced 2025-06-18 16:27:01 -04:00
new host: Epimetheus (installer)
This commit is contained in:
parent
e9c74278af
commit
3c1c079d19
2 changed files with 50 additions and 7 deletions
37
hosts/epimetheus/configuration.nix
Normal file
37
hosts/epimetheus/configuration.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ 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;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue