Skip to content

Instantly share code, notes, and snippets.

@redvers
Created November 7, 2019 02:12
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save redvers/874ba64f72eedf20e7fb122af4318b82 to your computer and use it in GitHub Desktop.
My minimal configuration.nix
{ config, pkgs, ... }:
{
networking.hostName = "wheee"; # Define your hostname.
environment.systemPackages = with pkgs; [
wget vim tmux
];
system.stateVersion = "20.03"; # Did you read the comment?
users.extraUsers.root.initialHashedPassword = "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment