init
This commit is contained in:
commit
1a5d89af7a
29 changed files with 911 additions and 0 deletions
15
hosts/configuration.nix
Executable file
15
hosts/configuration.nix
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
{ 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?
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue