moved iso to pkgs folder

This commit is contained in:
Gerg-L 2023-03-08 20:51:27 -05:00
parent f727e15f2c
commit 1ae7fc1049
2 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,37 @@
_: {
lib,
modulesPath,
pkgs,
...
}: {
imports = [
"${toString modulesPath}/profiles/minimal.nix"
"${toString modulesPath}/installer/cd-dvd/installation-cd-base.nix"
];
environment = {
noXlibs = lib.mkOverride 500 false;
defaultPackages = [];
systemPackages = with pkgs; [gitMinimal neovim];
variables = {
EDITOR = "nvim";
};
};
documentation = {
man.enable = lib.mkOverride 500 false;
doc.enable = lib.mkOverride 500 false;
};
fonts.fontconfig.enable = lib.mkForce false;
isoImage = {
edition = lib.mkForce "custom-minimal";
isoName = lib.mkForce "NixOS.iso";
};
nix = {
settings = {
experimental-features = ["nix-command" "flakes" "repl-flake"];
auto-optimise-store = true;
};
};
}