NixosConfig/systems/vm/configuration.nix
2026-03-01 17:26:53 +00:00

27 lines
420 B
Nix

{ pkgs, ... }:
{
nix.package = pkgs.lixPackageSets.stable.lix;
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";
}