28 lines
516 B
Nix
28 lines
516 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
../sops-desktop.nix
|
|
../sudo-nopasswd.nix
|
|
../autologin.nix
|
|
../packages.nix
|
|
|
|
## Server
|
|
../server/starship.nix
|
|
];
|
|
|
|
## Enable virtualisation guest settings
|
|
services.qemuGuest.enable = true;
|
|
services.spice-vdagentd.enable = true;
|
|
services.xserver = {
|
|
videoDrivers = [ "modesetting" ]; # Driver vidéo optimisé pour QEMU/KVM
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
pkgs.spice-gtk # Outils SPICE
|
|
pkgs.spice-protocol # Protocoles SPICE
|
|
];
|
|
}
|