15 lines
506 B
Nix
Executable file
15 lines
506 B
Nix
Executable file
{ config, pkgs, username, ... }:
|
||
{
|
||
boot.loader.systemd-boot.enable = true;
|
||
boot.loader.efi.canTouchEfiVariables = true;
|
||
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
||
time.timeZone = "America/Chicago";
|
||
users.users.${username} = {
|
||
isNormalUser = true;
|
||
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
||
};
|
||
environment.systemPackages = with pkgs; [
|
||
curl
|
||
];
|
||
system.stateVersion = "22.11"; # Did you read the comment?
|
||
}
|