20 lines
No EOL
302 B
Nix
20 lines
No EOL
302 B
Nix
{ config, pkgs, ...}:
|
|
|
|
{
|
|
imports = [
|
|
../../all-modules.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
users.users.riley = {
|
|
isNormalUser = true;
|
|
extraGroups = ["wheel"];
|
|
};
|
|
|
|
modules.graphical.enable = true;
|
|
modules.terminal.enable = true;
|
|
|
|
console.keyMap = "uk";
|
|
|
|
system.stateVersion = "25.11";
|
|
} |