27 lines
420 B
Nix
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";
|
|
}
|