Fixes to last article
This commit is contained in:
parent
8d25e818d6
commit
6019454556
1 changed files with 5 additions and 3 deletions
|
@ -47,9 +47,12 @@ nixos-generate-config --root /mnt
|
||||||
```
|
```
|
||||||
|
|
||||||
This will generate a `/mnt/etc/nixos/hardware-configuration.nix` with the specifics of your machine along with a basic `/mnt/etc/nixos/configuration.nix` that I replaced with:
|
This will generate a `/mnt/etc/nixos/hardware-configuration.nix` with the specifics of your machine along with a basic `/mnt/etc/nixos/configuration.nix` that I replaced with:
|
||||||
```sh
|
```nix
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
./hardware-configuration.nix
|
||||||
|
];
|
||||||
boot.kernelParams = [
|
boot.kernelParams = [
|
||||||
"console=ttyS0"
|
"console=ttyS0"
|
||||||
"console=tty1"
|
"console=tty1"
|
||||||
|
@ -92,7 +95,6 @@ This will generate a `/mnt/etc/nixos/hardware-configuration.nix` with the specif
|
||||||
doas.enable = true;
|
doas.enable = true;
|
||||||
sudo.enable = false;
|
sudo.enable = false;
|
||||||
};
|
};
|
||||||
services = {
|
|
||||||
services = {
|
services = {
|
||||||
openssh = {
|
openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -107,9 +109,9 @@ This will generate a `/mnt/etc/nixos/hardware-configuration.nix` with the specif
|
||||||
adyxax = {
|
adyxax = {
|
||||||
description = "Julien Dessaux";
|
description = "Julien Dessaux";
|
||||||
extraGroups = [ "wheel" ];
|
extraGroups = [ "wheel" ];
|
||||||
isNormalUser = true;
|
|
||||||
hashedPassword = "$y$j9T$Nne7Ad1nxNmluCKBzBG3//$h93j8xxfBUD98f/7nGQqXPeM3QdZatMbzZ0p/G2P/l1";
|
hashedPassword = "$y$j9T$Nne7Ad1nxNmluCKBzBG3//$h93j8xxfBUD98f/7nGQqXPeM3QdZatMbzZ0p/G2P/l1";
|
||||||
home = "/home/julien";
|
home = "/home/julien";
|
||||||
|
isNormalUser = true;
|
||||||
openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILOJV391WFRYgCVA2plFB8W8sF9LfbzXZOrxqaOrrwco adyxax@yen" ];
|
openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILOJV391WFRYgCVA2plFB8W8sF9LfbzXZOrxqaOrrwco adyxax@yen" ];
|
||||||
};
|
};
|
||||||
root = {
|
root = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue