massicot: add new machine

This commit is contained in:
Xinyang Li 2023-07-29 23:34:24 +08:00
parent 8f0971ab2b
commit 42f550f156
4 changed files with 94 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ config, libs, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./networking.nix
];
environment.systemPackages = with pkgs; [
git
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
system.stateVersion = "22.11";
networking = {
hostName = "massicot";
useDHCP = false;
};
services.openssh = {
enable = true;
};
systemd.services.sshd.wantedBy = pkgs.lib.mkForce [ "multi-user.target" ];
users.users.xin = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPBcSvUQnmMFtpftFKIsDqeyUyZHzRg5ewgn3VEcLnss"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIInPn+7cMbH7zCEPJArU/Ot6oq8NHo8a2rYaCfTp7zgd"
];
};
}