NixosConfig/systems/vm/configuration.nix
2026-02-28 20:03:22 +00:00

25 lines
379 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;
quickshell = true;
};
modules.yazi.enable = true;
system.stateVersion = "25.11";
}