mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-08 01:07:23 +08:00
19 lines
277 B
Nix
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
|
|
];
|
|
}
|