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

15 lines
289 B
Nix

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