migrate configuration to 23.05

This commit is contained in:
♥ Minnie ♥ 2023-06-04 00:52:58 +08:00
parent 5882c19109
commit da02b06e41

View file

@ -89,16 +89,12 @@
# A lot of GUI programs need this, nearly all wayland applications # A lot of GUI programs need this, nearly all wayland applications
"cma=128M" "cma=128M"
]; ];
loader = { loader = {
# Use the extlinux boot loader. (NixOS wants to enable GRUB by default) # Use the extlinux boot loader. (NixOS wants to enable GRUB by default)
grub.enable = false; grub.enable = false;
# Enables the generation of /boot/extlinux/extlinux.conf # Enables the generation of /boot/extlinux/extlinux.conf
generic-extlinux-compatible.enable = true; generic-extlinux-compatible.enable = true;
}; };
# Mount a tmpfs on /tmp during boot
tmpOnTmpfs = true;
}; };
hardware = { hardware = {
@ -142,10 +138,12 @@
# Enable the OpenSSH daemon. # Enable the OpenSSH daemon.
openssh = { openssh = {
enable = true; enable = true;
settings = {
# Disable root login. # Disable root login.
permitRootLogin = "no"; PermitRootLogin = "no";
# Disable password login (Require keys). # Disable password login (Require keys).
passwordAuthentication = false; PasswordAuthentication = false;
};
}; };
}; };