Renamed sampledb-dev to mnemosyne

This commit is contained in:
Random936
2026-03-19 20:50:45 -04:00
parent 790ac67862
commit 594076d659
5 changed files with 21 additions and 21 deletions

View File

@@ -35,7 +35,7 @@
}
{
targets = [ "192.168.100.42:${node_port}" ];
labels.instance = "sampledb-dev";
labels.instance = "mnemosyne";
}
{
targets = [ "192.168.100.45:${node_port}" ];
@@ -82,11 +82,11 @@
}
{
targets = [ "192.168.100.42" ];
labels.instance = "sampledb-dev";
labels.instance = "mnemosyne";
}
{
targets = [ "192.168.100.42" ];
labels.instance = "sampledb-dev";
labels.instance = "mnemosyne";
}
{
targets = [ "192.168.100.45" ];

15
config/mnemosyne.nix Normal file
View File

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

View File

@@ -1,15 +0,0 @@
{ 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;
}