Initial minimal NixOS config for syncala
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
{ 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;
|
||||
}
|
||||
Reference in New Issue
Block a user