NixosConfig/systems/vm/configuration.nix

25 lines
359 B
Nix

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