nixos-config/configurations/nixos/hello/default.nix
2025-01-21 18:50:01 -05:00

19 lines
277 B
Nix

{ flake, pkgs, ... }:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
nixos-unified.sshTarget = "srid@hello";
imports = [
../public-vm/configuration.nix
];
networking.hostName = "hello";
environment.systemPackages = with pkgs; [
neovim
];
}