dotfiles/config/sampledb.nix
2024-11-03 20:59:00 -08:00

16 lines
313 B
Nix

{ config, pkgs, inputs, lib, ... }: {
imports = [
../hardware/sampledb.nix
./headless.nix
(import ./networking.nix {
hostname = "sampledb-dev";
ip_address = "192.168.100.42";
open_ports = [ 80 443 ];
inherit lib;
})
];
users.users.sampledb = import ./user.nix;
}