Fix some bugs in the little-rascal system config
This commit is contained in:
parent
8c8e536c65
commit
d64de012e7
1 changed files with 3 additions and 7 deletions
|
@ -16,12 +16,12 @@
|
|||
;; root file system.
|
||||
(bootloader (bootloader-configuration
|
||||
(bootloader grub-bootloader)
|
||||
(targets '("/dev/vda"))))
|
||||
(targets '("/dev/sda"))))
|
||||
;; It's fitting to support the equally bare bones `-nographic`
|
||||
;; QEMU option, which also nicely sidesteps forcing QWERTY.
|
||||
(kernel-arguments (list "console=ttyS0,115200"))
|
||||
(file-systems (cons (file-system
|
||||
(device (file-system-label "/dev/vda1"))
|
||||
(device "/dev/sda2")
|
||||
(mount-point "/")
|
||||
(type "ext4"))
|
||||
%base-file-systems))
|
||||
|
@ -58,11 +58,7 @@ root ALL=(ALL) ALL
|
|||
(routes
|
||||
(list (network-route
|
||||
(destination "default")
|
||||
(gateway "192.168.200.1"))
|
||||
(network-route
|
||||
(destination "192.168.200.0/24")
|
||||
(source "192.168.200.2")
|
||||
(device "ens3"))))
|
||||
(gateway "192.168.200.1"))))
|
||||
(name-servers '("192.168.200.1")))))
|
||||
(service openssh-service-type
|
||||
(openssh-configuration
|
||||
|
|
Loading…
Reference in a new issue