Files
nixos/hosts/iso/default.nix
T

16 lines
388 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 = [
2023-06-29 00:28:28 -05:00
"${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;
2022-04-21 19:47:07 +00:00
users.users.greg.initialPassword = "";
2023-09-05 08:49:10 -05:00
#services.getty.autologinUser = lib.mkForce "greg";
2023-12-06 08:06:52 -06:00
environment.systemPackages = with pkgs; [
tree
];
2022-04-21 12:42:42 +00:00
}