feat: add mennos-cloud-server configuration and update related tasks
Some checks failed
Nix Format Check / check-format (push) Failing after 39s
Some checks failed
Nix Format Check / check-format (push) Failing after 39s
This commit is contained in:
@ -70,6 +70,19 @@
|
||||
};
|
||||
};
|
||||
|
||||
"mennos-cloud-server" = home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
modules = [ ./home.nix ];
|
||||
extraSpecialArgs = {
|
||||
inherit
|
||||
pkgs
|
||||
pkgs-unstable
|
||||
;
|
||||
isServer = true;
|
||||
hostname = "mennos-cloud-server";
|
||||
};
|
||||
};
|
||||
|
||||
"mennos-vm" = home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
modules = [ ./home.nix ];
|
||||
|
@ -0,0 +1,4 @@
|
||||
{ pkgs-unstable, ... }:
|
||||
{
|
||||
home.packages = with pkgs-unstable; [ ];
|
||||
}
|
4
config/home-manager/packages/common/hosts/mennos-vm.nix
Normal file
4
config/home-manager/packages/common/hosts/mennos-vm.nix
Normal file
@ -0,0 +1,4 @@
|
||||
{ pkgs-unstable, ... }:
|
||||
{
|
||||
home.packages = with pkgs-unstable; [ ];
|
||||
}
|
@ -15,6 +15,10 @@
|
||||
[ ./hosts/mennos-server.nix ]
|
||||
else if hostname == "dotfiles-test" then
|
||||
[ ./hosts/mennos-server.nix ]
|
||||
else if hostname == "mennos-cloud-server" then
|
||||
[ ./hosts/mennos-cloud-server.nix ]
|
||||
else if hostname == "mennos-vm" then
|
||||
[ ./hosts/mennos-vm.nix ]
|
||||
else
|
||||
[ ./hosts/fallback.nix ];
|
||||
|
||||
|
Reference in New Issue
Block a user