NixosConfig/systems/vm/configuration.nix
2026-02-28 18:58:48 +00:00

21 lines
No EOL
306 B
Nix

{ config, pkgs, ...}:
{
imports = [
../../all-modules.nix
./hardware-configuration.nix
];
users.users.riley = {
isNormalUser = true;
extraGroups = ["wheel"];
};
networking.hostName = "vm";
modules.graphical.enable = true;
modules.yazi.enable = true;
system.stateVersion = "25.11";
}