21 lines
No EOL
306 B
Nix
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";
|
|
} |