Files
nixos/hosts/iso/default.nix
T

19 lines
403 B
Nix
Raw Normal View History

2024-10-19 01:19:59 -05:00
{
pkgs,
lib,
modulesPath,
...
}:
2022-04-21 12:42:42 +00:00
{
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-graphical-calamares-gnome.nix"
"${modulesPath}/installer/cd-dvd/channel.nix"
];
2022-04-21 12:42:42 +00:00
networking.networkmanager.enable = lib.mkForce false;
users.users.greg.initialPassword = "";
#services.getty.autologinUser = lib.mkForce "greg";
2024-10-19 01:19:59 -05:00
environment.systemPackages = with pkgs; [ tree ];
2022-04-21 12:42:42 +00:00
}