Add desktop to gaming.nix

This commit is contained in:
Vili Sinervä 2025-05-08 23:22:46 +03:00
parent f103652630
commit 387a4e1f2f
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996

View file

@ -1,11 +1,14 @@
{ ... }: { lib, ... }:
{ {
networking.hostName = "gaming"; networking.hostName = "gaming";
imports = [ imports = [
../base.nix ../base.nix
../desktop.nix
../users/vili.nix
../hardware-specific/nvidia.nix ../hardware-specific/nvidia.nix
]; ];
users.users.vili.hashedPasswordFile = lib.mkForce null;
services.qemuGuest.enable = true; services.qemuGuest.enable = true;
} }