23 lines
456 B
Nix
23 lines
456 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
../common/global
|
|
../common/user-node.nix
|
|
./hardware.nix
|
|
];
|
|
|
|
networking.hostName = "nix-dev";
|
|
services.tailscaleAutoconnect.authkey = "tskey-auth-k6s6VD5CNTRL-3fmjSfzbQ3PHUMyaiML95P8xzmGv5XxYc";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
wget
|
|
git
|
|
nomad
|
|
deploy-rs
|
|
docker
|
|
];
|
|
|
|
boot.loader.grub.enable = true;
|
|
boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
|
|
}
|