NixosConfig/systems/vm/configuration.nix

24 lines
No EOL
338 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;
waybar = true;
};
modules.yazi.enable = true;
system.stateVersion = "25.11";
}