♻️ (hydrogen) migrate vps from digitalocean to ovh
This commit is contained in:
parent
46a1f9b975
commit
a8a72ffdb6
|
@ -1,9 +1 @@
|
|||
{ modulesPath, lib, ... }: {
|
||||
imports =
|
||||
lib.optional (builtins.pathExists ./do-userdata.nix) ./do-userdata.nix ++ [
|
||||
(modulesPath + "/virtualisation/digital-ocean-config.nix")
|
||||
|
||||
./services
|
||||
./system
|
||||
];
|
||||
}
|
||||
{ ... }: { imports = [ ./services ./system ]; }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ ... }: {
|
||||
{ modulesPath, ... }: {
|
||||
# This value determines the NixOS release from which the default
|
||||
# settings for stateful data, like file locations and database versions
|
||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||
|
@ -7,5 +7,13 @@
|
|||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||
system.stateVersion = "23.05"; # Did you read the comment?
|
||||
|
||||
imports = [ ./networking ./packages ./ssh ./users ];
|
||||
imports = [
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
(modulesPath + "/profiles/qemu-guest.nix")
|
||||
./disko
|
||||
./networking
|
||||
./packages
|
||||
./ssh
|
||||
./users
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue