Renamed sampledb-dev to mnemosyne
This commit is contained in:
@@ -35,7 +35,7 @@
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
targets = [ "192.168.100.42:${node_port}" ];
|
targets = [ "192.168.100.42:${node_port}" ];
|
||||||
labels.instance = "sampledb-dev";
|
labels.instance = "mnemosyne";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
targets = [ "192.168.100.45:${node_port}" ];
|
targets = [ "192.168.100.45:${node_port}" ];
|
||||||
@@ -82,11 +82,11 @@
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
targets = [ "192.168.100.42" ];
|
targets = [ "192.168.100.42" ];
|
||||||
labels.instance = "sampledb-dev";
|
labels.instance = "mnemosyne";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
targets = [ "192.168.100.42" ];
|
targets = [ "192.168.100.42" ];
|
||||||
labels.instance = "sampledb-dev";
|
labels.instance = "mnemosyne";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
targets = [ "192.168.100.45" ];
|
targets = [ "192.168.100.45" ];
|
||||||
|
|||||||
15
config/mnemosyne.nix
Normal file
15
config/mnemosyne.nix
Normal 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;
|
||||||
|
}
|
||||||
@@ -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;
|
|
||||||
}
|
|
||||||
@@ -65,7 +65,7 @@
|
|||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
randomctf = mkNixosUnstableConfig "randomctf" [ ./config/shared.nix ./config/omen.nix ];
|
randomctf = mkNixosUnstableConfig "randomctf" [ ./config/shared.nix ./config/omen.nix ];
|
||||||
r330-media = mkNixosConfig "r330-media" [ ./config/media.nix ];
|
r330-media = mkNixosConfig "r330-media" [ ./config/media.nix ];
|
||||||
sampledb-dev = mkNixosConfig "sampledb-dev" [ ./config/sampledb.nix ];
|
mnemosyne = mkNixosConfig "mnemosyne" [ ./config/mnemosyne.nix ];
|
||||||
r330-logging = mkNixosConfig "r330-logging" [ ./config/logging.nix ];
|
r330-logging = mkNixosConfig "r330-logging" [ ./config/logging.nix ];
|
||||||
mindforge = mkNixosConfig "mindforge" [ ./config/ai.nix ];
|
mindforge = mkNixosConfig "mindforge" [ ./config/ai.nix ];
|
||||||
};
|
};
|
||||||
@@ -79,7 +79,7 @@
|
|||||||
./home/modules/hacking.nix
|
./home/modules/hacking.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
sampledb = mkHomeConfig "sampledb" [
|
mnemosyne = mkHomeConfig "mnemosyne" [
|
||||||
./home/headless-nixos.nix
|
./home/headless-nixos.nix
|
||||||
./home/modules/development.nix
|
./home/modules/development.nix
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -47,7 +47,7 @@
|
|||||||
r730xd-proxmox = "ssh root@192.168.100.22";
|
r730xd-proxmox = "ssh root@192.168.100.22";
|
||||||
r330-media = "ssh media@192.168.100.40";
|
r330-media = "ssh media@192.168.100.40";
|
||||||
r330-logging = "ssh logging@192.168.100.41";
|
r330-logging = "ssh logging@192.168.100.41";
|
||||||
sampledb-dev = "ssh sampledb@192.168.100.42";
|
mnemosyne = "ssh sampledb@192.168.100.42";
|
||||||
mindforge = "ssh mindforge@mindforge.randomctf.local";
|
mindforge = "ssh mindforge@mindforge.randomctf.local";
|
||||||
|
|
||||||
# Nix Specific aliases
|
# Nix Specific aliases
|
||||||
|
|||||||
Reference in New Issue
Block a user