summary refs log tree commit diff
path: root/host/uISO/development.nix
blob: 90ffcfb9fdd898b2307b0f202843f61044d4467c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  config,
  lib,
  pkgs,
  
  #params
  #enableBios ? true,
  #enableEfi ? true,
  #enableUsb ? true,

  ...
}:

#with lib;

{
  users.users.root.initialPassword = "root";
  services.getty.autologinUser = "root";

  isoImage = {
    squashfsCompression = "gzip -Xcompression-level 1";
    compressImage = false;
    includeSystemBuildDependencies = false;
    efiSplashImage = null;
    #splashImage = null;
    grubTheme = null;
  };
  
  boot = {
    initrd = {
      #systemd.enable = true;
      systemd.emergencyAccess = true;
    };
    #consoleLogLevel = 1;
    kernelParams = [
      "console=ttyS0,115200"
      "systemd.gpt_auto=0"
      #"console=tty1"
      #"quiet"
    ];
  };
  environment.systemPackages = with pkgs; [
    #xterm

    (callPackage ./pkgs/resize.nix { })
    #coreutils
    htop
    btop
    neofetch
  ];
}