Stub robin
This commit is contained in:
parent
cb34d15553
commit
9f79d2d557
2 changed files with 25 additions and 0 deletions
13
hosts/server/default.nix
Normal file
13
hosts/server/default.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
wget
|
||||
curl
|
||||
];
|
||||
|
||||
service.openssh.enable = true;
|
||||
}
|
||||
12
hosts/server/robin/default.nix
Normal file
12
hosts/server/robin/default.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./system-configuration.nix
|
||||
../default.nix
|
||||
];
|
||||
|
||||
networking.hostName = "robin";
|
||||
networking.hostId = "";
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue