Fix: split qemu configuration
This commit is contained in:
parent
57c445fd56
commit
bb18183277
5 changed files with 12 additions and 12 deletions
|
|
@ -2,7 +2,6 @@
|
|||
imports = [
|
||||
../../profiles/workstation-bspwm.nix
|
||||
../../modules/hardware/bepovim.nix
|
||||
# ../../modules/dev/qemu.nix
|
||||
../../modules/common/nix.nix
|
||||
];
|
||||
|
||||
|
|
@ -49,6 +48,11 @@
|
|||
users.lomig = import ../../hm/users/lomig-desktop.nix;
|
||||
};
|
||||
|
||||
networking = {
|
||||
firewall.allowedTCPPorts = [5900 5901 5902];
|
||||
bridges.br0.interfaces = ["enp11s0"];
|
||||
};
|
||||
|
||||
system.stateVersion = "25.05"; # pour éviter les hurlements inutiles
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,6 +49,9 @@
|
|||
git
|
||||
hugo
|
||||
];
|
||||
networking.firewall.allowedTCPPorts = [ 80 ];
|
||||
networking = {
|
||||
firewall.allowedTCPPorts = [ 80 5900 5901 5902 ];
|
||||
bridges.br0.interfaces = [ "eno1" ];
|
||||
};
|
||||
system.stateVersion = "25.05"; # Did you read the comment?
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue