summaryrefslogtreecommitdiff
path: root/modules/snorlax/uvm-guests
diff options
context:
space:
mode:
authorJasper Ras <jras@hostnet.nl>2025-02-16 10:15:04 +0100
committerJasper Ras <jras@hostnet.nl>2025-02-16 19:39:02 +0100
commit70764cf615fd89b7ab77532ed23c18c073c5d245 (patch)
tree56e12054017a1d72df7a8a7ec4cc0b48fcef9c53 /modules/snorlax/uvm-guests
parent69a2b48b5cacf558c6cce5db8958714f865d58d0 (diff)
disabled some muvm stuff
Diffstat (limited to 'modules/snorlax/uvm-guests')
-rw-r--r--modules/snorlax/uvm-guests/cpanel.nix17
1 files changed, 16 insertions, 1 deletions
diff --git a/modules/snorlax/uvm-guests/cpanel.nix b/modules/snorlax/uvm-guests/cpanel.nix
index f59a306..b7fb4c3 100644
--- a/modules/snorlax/uvm-guests/cpanel.nix
+++ b/modules/snorlax/uvm-guests/cpanel.nix
@@ -15,12 +15,27 @@
config = {
networking.hostName = "cpanel";
+ systemd.network.enable = true;
+ systemd.network.networks."20-lan" = {
+ matchConfig.Type = "ether";
+ networkConfig = {
+ # Address = ["192.168.50.3/24" "2001:db8::b/64"];
+ Gateway = "192.168.50.1";
+ DNS = ["192.168.50.1"];
+ IPv6AcceptRA = true;
+ DHCP = "yes";
+ };
+ };
+
+ home-manager.users.jras.home.stateVersion = "24.11";
imports = [
inputs.home-manager.nixosModules.home-manager
inputs.disko.nixosModules.disko
inputs.nixos-facter-modules.nixosModules.facter
- ../../core
+ ../../core/users.nix
+ ../../core/packages.nix
+ ../../core/services.nix
];