Files
nixos/hosts/iso/default.nix
T

16 lines
401 B
Nix
Raw Normal View History

2023-06-29 00:28:28 -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";
environment.systemPackages = with pkgs; [
tree
];
2022-04-21 12:42:42 +00:00
}