23 lines
458 B
Nix
23 lines
458 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
system.stateVersion = "24.05";
|
|
|
|
boot.loader.grub.enable = true;
|
|
boot.loader.grub.device = "/dev/sda";
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/sda1";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
networking.hostName = "syncala";
|
|
|
|
environment.systemPackages = with pkgs; [ vim git ];
|
|
|
|
users.users.root.openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL637vZmT placenolder"
|
|
];
|
|
|
|
services.openssh.enable = true;
|
|
}
|