summaryrefslogtreecommitdiff
path: root/odin.nix
diff options
context:
space:
mode:
Diffstat (limited to 'odin.nix')
-rw-r--r--odin.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/odin.nix b/odin.nix
index d7a20e68..2781f664 100644
--- a/odin.nix
+++ b/odin.nix
@@ -24,6 +24,12 @@
24 # Define on which hard drive you want to install Grub. 24 # Define on which hard drive you want to install Grub.
25 boot.loader.grub.device = "/dev/disk/by-id/ata-MKNSSDCR60GB_MK130619AS1031770"; 25 boot.loader.grub.device = "/dev/disk/by-id/ata-MKNSSDCR60GB_MK130619AS1031770";
26 26
27 boot.loader.grub.extraConfig = "serial; terminal_output.serial";
28 boot.kernelParams = [ "console=ttyS0,115200"
29 ];
30
31 systemd.services."serial-getty@ttyS0.service".wantedBy = [ "getty.target" ];
32
27 boot.extraTTYs = [ "tty7" ]; 33 boot.extraTTYs = [ "tty7" ];
28 34
29 boot.initrd.network = { 35 boot.initrd.network = {