Fix second hypervisor
This commit is contained in:
parent
5a49882384
commit
32d95a73e1
1 changed files with 8 additions and 8 deletions
16
flake.nix
16
flake.nix
|
@ -20,18 +20,18 @@
|
|||
in
|
||||
{
|
||||
nixosConfigurations = {
|
||||
nixmox-perseverance = nixpkgs.lib.nixosSystem {
|
||||
nixmox-curiosity = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
./hosts/nixmox-perseverance/configuration.nix
|
||||
./hosts/nixmox-curiosity/configuration.nix
|
||||
{
|
||||
networking.hostName = "nixmox-perseverance";
|
||||
networking.hostName = "nixmox-curiosity";
|
||||
}
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.${username} = import ./hosts/nixmox-perseverance/home.nix;
|
||||
home-manager.users.${username} = import ./hosts/nixmox-curiosity/home.nix;
|
||||
}
|
||||
microvm.nixosModules.host
|
||||
{
|
||||
|
@ -71,18 +71,18 @@
|
|||
inherit system;
|
||||
};
|
||||
};
|
||||
nixmox-curiosity = nixpkgs.lib.nixosSystem {
|
||||
nixmox-perseverance = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
./hosts/nixmox-curiosity/configuration.nix
|
||||
./hosts/nixmox-perseverance/configuration.nix
|
||||
{
|
||||
networking.hostName = "nixmox-curiosity";
|
||||
networking.hostName = "nixmox-perseverance";
|
||||
}
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.${username} = import ./hosts/nixmox-curiosity/home.nix;
|
||||
home-manager.users.${username} = import ./hosts/nixmox-perseverance/home.nix;
|
||||
}
|
||||
microvm.nixosModules.host
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue