Take all references to Nix stable out Take out hm stable and other inputs th also depended on it Clean up some lints and deadnix code
19 lines
415 B
Nix
19 lines
415 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
modulesPath,
|
|
...
|
|
}:
|
|
{
|
|
|
|
imports = [
|
|
"${modulesPath}/installer/cd-dvd/installation-cd-graphical-calamares-gnome.nix"
|
|
"${modulesPath}/installer/cd-dvd/channel.nix"
|
|
];
|
|
|
|
networking.networkmanager.enable = lib.mkForce false;
|
|
users.users.greg.initialPassword = lib.mkForce "";
|
|
#services.getty.autologinUser = lib.mkForce "greg";
|
|
environment.systemPackages = with pkgs; [ tree ];
|
|
}
|