Stub robin

This commit is contained in:
KnightArtorias 2026-03-06 01:32:13 +00:00
parent cb34d15553
commit 9f79d2d557
2 changed files with 25 additions and 0 deletions

13
hosts/server/default.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
networking.networkmanager.enable = true;
environment.systemPackages = with pkgs; [
neovim
wget
curl
];
service.openssh.enable = true;
}

View file

@ -0,0 +1,12 @@
{ ... }:
{
imports = [
./hardware-configuration.nix
./system-configuration.nix
../default.nix
];
networking.hostName = "robin";
networking.hostId = "";
}